15 lines
713 B
HTML
15 lines
713 B
HTML
<!doctype html>
|
|
<html class="no-js" lang="">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
|
<title>Der Kartograph -- Map Generator</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link href="/static/print.css" rel="stylesheet" type="text/css" media="all">
|
|
</head>
|
|
<body onload="window.print();">
|
|
<p>{{ .Seed }}</p>
|
|
<img src="/map.svg?seed={{ .Seed }}&s={{ .Size }}&w={{ .Wastelands }}&r={{ .Ruins }}&m={{ .Mountains }}" class="map">
|
|
<img src="/map.svg?seed={{ .Seed }}&s={{ .Size }}&w={{ .Wastelands }}&r={{ .Ruins }}&m={{ .Mountains }}" class="map">
|
|
</body>
|
|
</html>
|