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