kopia lustrzana https://github.com/osm2vectortiles/osm2vectortiles
31 wiersze
1.3 KiB
HTML
31 wiersze
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta http-equiv='X-UA-Compatible' content='IE=edge' />
|
|
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0' />
|
|
|
|
<title>{% if page.title %}{{ page.title }} – {% endif %}{{ site.name }}</title>
|
|
|
|
<meta name="author" content="{{ site.name }}" />
|
|
<meta name="description" content="{{ site.description }}" />
|
|
<meta name="theme-color" content="#3f9a6c">
|
|
{% include facebook_tags.html %}
|
|
{% include twitter_tags.html %}
|
|
|
|
<link href="/base.css" rel="stylesheet" />
|
|
<script src="https://d3js.org/d3.v3.min.js" charset="utf-8"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/mustache.js/2.2.1/mustache.min.js" charset="utf-8"></script>
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/1.5.10/clipboard.min.js" charset="utf-8"></script>
|
|
<script type="text/javascript" src="/js/index.js"></script>
|
|
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
|
|
</head>
|
|
<body {% if page.id == 'home' %}class="home"{% endif %}>
|
|
{% include navbar.html %}
|
|
{{ content }}
|
|
{% include commercial_support.html %}
|
|
{% include footer.html %}
|
|
{% include google_analytics.html %}
|
|
</body>
|
|
</html>
|