aboutsummaryrefslogtreecommitdiffstats
path: root/templates/poem-panel.html
blob: 335957820901f90566262b4fc2a56121d7da7028 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
<div
  style="top: {{ self::thread_rng().gen_range(-jiggle..=jiggle) }}vw; left: {{ self::thread_rng().gen_range(-4..=4) }}vw"
  class="panel content poem">
  {% if let Some(title) = poem.title %}<h1 class="title">{{ title }}</h1>{% endif %}
  <h2 class="created-at">{{ poem.created_at.date_naive() }} <a href="/poetry/{{ poem.file_name }}">permalink</a>
  </h2>
  <div class="poem-content">
    {{ poem.content|safe }}
  </div>
</div>