{{#each css.local}} {{/each}}
{{#if ./experimental}} {{/if}}
Edit

{{ title }}

{{#each tags}} {{ ./tag }}{{ ./examples.length }} {{/each}}

{{{ contents }}}

{{ shortdesc }}

{{ md docs }}
main.js
{{ js.source }}
index.html
<!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://cdn.jsdelivr.net/npm/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>
{{#each extraSources}}
{{./name}}
{{ ./source }}
{{/each}}
package.json
{{ pkgJson }}
{{#each js.local}} {{/each}}