{{#each css.local}} {{/each}}
{{ shortdesc }}
{{ js.source }}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{{ title }}</title>
{{#each css.remote}}
<link rel="stylesheet" href="{{ . }}">
{{/each}}
<link rel="stylesheet" href="node_modules/ol/ol.css">
<style>
.map {
width: 100%;
height: 400px;
}
{{#if css.source}}{{ indent css.source spaces=6 }}{{/if}} </style>
</head>
<body>
{{ indent contents spaces=4 }} <!-- Pointer events polyfill for old browsers, see https://caniuse.com/#feat=pointer -->
<script src="https://unpkg.com/elm-pep@1.0.6/dist/elm-pep.js"></script>
{{#each js.remote}}
<script src="{{ . }}"></script>
{{/each}}
<script type="module" src="main.js"></script>
</body>
</html>
{{ ./source }}
{{ pkgJson }}