oliverdavies.uk/website/source/_layouts/daily_email.html.twig

15 lines
534 B
Twig
Raw Normal View History

2022-08-12 22:57:19 +00:00
{% extends "default" %}
2022-08-12 23:03:54 +00:00
{% block content_wrapper %}
<div class="markdown">
{% block content %}{% endblock %}
</div>
2022-08-20 00:37:24 +00:00
<footer class="mt-6">
<ul>
<li><a class="text-sm link" href="http://twitter.com/intent/tweet?text={{ page.title|url_encode }}%20by%20@{{ site.twitter.name }}+%0A%0A{{ site.url }}{{ page.url|trim('/', 'right') }}">Share this page on Twitter</a></li>
<li><a class="text-sm link" href="/archive">Browse the archive</a></li>
</ul>
</footer>
2022-08-12 23:03:54 +00:00
{% endblock %}