14 lines
220 B
Twig
14 lines
220 B
Twig
|
|
||
|
|
||
|
<section>
|
||
|
<h2>{{ title }}</h2>
|
||
|
|
||
|
<p>Here are the emails I sent this week:</p>
|
||
|
|
||
|
<ul>
|
||
|
{% for email in emails %}
|
||
|
<li><a href="{{ email.url }}">{{ email.title }}</a></li>
|
||
|
{% endfor %}
|
||
|
</ul>
|
||
|
</section>
|