forked from wezm/wezm.net
33 lines
1.4 KiB
HTML
33 lines
1.4 KiB
HTML
<!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" />
|
|
{% block metadata %}{% endblock %}
|
|
</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>
|
|
•
|
|
<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://mastodon.decentralised.social/@wezm" rel="me">Fediverse</a>
|
|
<a href="https://github.com/wezm">GitHub</a>
|
|
<a href="https://github.com/sponsors/wezm">Support My Work</a>
|
|
</div>
|
|
<div class="copyright">
|
|
Copyright © 2003 – {{ now() | date(format="%Y") }} {{ config.extra.author }} —
|
|
<a href="https://github.com/wezm/wezm.net">Website Source on GitHub</a>
|
|
</div>
|
|
</footer>
|
|
<script data-goatcounter="https://wezm.goatcounter.com/count" async src="//gc.zgo.at/count.js"></script>
|
|
</body>
|
|
</html>
|
|
|