8 lines
160 B
Django/Jinja
8 lines
160 B
Django/Jinja
<h2>{{ newsletter_title }}</h2>
|
|
<p><em>{{ newsletter_subtitle }}</em></p>
|
|
<hr>
|
|
{% for b in blocks %}
|
|
{{ b }}
|
|
{% if not loop.last %}<hr>{% endif %}
|
|
{% endfor %}
|