1
0
Fork 0
forked from wezm/wezm.net
wezm.net/v2/templates/layout.html

33 lines
1.3 KiB
HTML
Raw Normal View History

2020-01-27 06:53:47 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{% block title %}{% endblock %}</title>
<link rel="stylesheet" href="{{ config.base_url }}/screen.css" type="text/css" charset="utf-8" />
<link rel="alternate" type="application/rss+xml" href="{{ config.base_url }}/rss.xml" title="Wesley Moore" />
</head>
<body class="{{ section.extra.body_class | default(value="") }}">
{% block body %}{% endblock %}
<footer class="text-center">
<div class="socials">
<a href="{{ config.base_url }}/about/">About</a>
<a href="{{ config.base_url }}/posts/">Archives</a>
&bullet;
<a href="{{ config.base_url }}/rss.xml">RSS</a>
<a href="mailto:{{ config.extra.email }}">Email</a>
<a href="https://twitter.com/wezm">Twitter</a>
<a href="https://decentralised.social/wezm">Fediverse</a>
<a href="https://github.com/wezm">GitHub</a>
<a href="https://patreon.com/wezm">Patreon</a>
</div>
<div class="copyright">
Copyright © 2003 &ndash; {{ now() | date(format="%Y") }} {{ config.extra.author }} &mdash;
<a href="https://github.com/wezm/wezm.net">Source on GitHub</a>
</div>
</footer>
<script data-goatcounter="https://wezm.goatcounter.com/count" async src="//gc.zgo.at/count.js"></script>
2020-01-27 06:53:47 +00:00
</body>
</html>