mirror of
https://github.com/phil-opp/blog_os.git
synced 2025-12-16 22:37:49 +00:00
This commit removes the https://www.goatcounter.com/ script that we were using for basic, privacy-friendly analytics. I don't really need that data, so there is not much value in keeping it.
45 lines
1.4 KiB
HTML
45 lines
1.4 KiB
HTML
<!doctype html>
|
|
|
|
<html lang="{{ lang }}">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="description" content="{{ config.description }}">
|
|
<meta name="author" content="{{ config.extra.author.name }}">
|
|
|
|
<link href="/css/edition-1/poole.css" rel="stylesheet">
|
|
<link href="/css/edition-1/main.css" rel="stylesheet">
|
|
<link href="/css/edition-1/isso.css" rel="stylesheet">
|
|
|
|
<script async src="/js/edition-1/main.js"></script>
|
|
|
|
<title>{% block title %}{% endblock title %} (First Edition)</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container content">
|
|
<header class="masthead">
|
|
<h2 class="masthead-title">
|
|
<a href="/edition-1" title="Home">{{ config.title }} (First Edition)</a>
|
|
</h2>
|
|
<p><small>{{ config.extra.subtitle | replace(from=" ", to=" ") | safe }}</small></p>
|
|
</header>
|
|
|
|
<main>{% block main %}{% endblock main %}</main>
|
|
|
|
<div>{% block after_main %}{% endblock after_main %}</div>
|
|
|
|
<footer class="footer">
|
|
<hr>
|
|
<small>
|
|
© <time datetime="2017">2017</time>. All rights reserved.
|
|
<a href="{{ get_url(path="@/pages/contact.md") | safe }}">Contact</a>
|
|
</small>
|
|
</footer>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|