blob: bdfbaffb4ee15b4a7d77f0926e4576f55a7eaa27 (
plain) (
tree)
|
|
{% if let Some(poem) = poem %}
<div class="panel" id="random-poem">
<h2>random poem</h2>
<a href="/poetry/{{ poem.file_name }}">
<h3>{% if let Some(title) = poem.title %}{{ title }}{% else %}permalink{% endif %}</h3>
</a>
<div class="poem-content">
{{ poem.content|safe }}
</div>
</div>
{% endif %}
|