aboutsummaryrefslogtreecommitdiffstats
path: root/templates/random-poem.html
blob: bdfbaffb4ee15b4a7d77f0926e4576f55a7eaa27 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
{% 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 %}