oliverdavies.uk/source/_layouts/daily_email.html.twig
2024-03-04 00:27:11 +00:00

27 lines
670 B
Twig

{% extends 'page' %}
{% block content_wrapper %}
<time datetime="{{ page.date|date('Y-m-d') }}">{{ page.date|date('F jS, Y') }}</time>
{{ parent() }}
<p>- Oliver</p>
{% block cta %}
{% if page.cta and site.ctas[page.cta] is defined %}
<p>P.S. {{ site.ctas[page.cta]|raw }}</p>
{% else %}
<p>P.S. {{ random(site.ctas)|raw }}</p>
{% endif %}
{% endblock %}
{% endblock %}
{% block content_bottom %}
{% include 'daily-email-form.html.twig' with {
intro: 'Sign up here and get more like this delivered straight to your inbox every day.',
title: 'Was this useful?',
} %}
{% include 'about-me.html.twig' %}
{% endblock %}