aboutsummaryrefslogtreecommitdiffstats
path: root/templates/blogpost-panel.html.tera
blob: 061d87be95616364bb7f5d6354a2ece05f1910ff (plain) (blame)
1
2
3
4
5
6
7
8
<div class="panel content blogpost">
  <h1 class="title">{{ blogpost.subject }}</h1>
  <h2 class="created-at">{{ blogpost.created_at }} <a href="/blog/{{ blogpost.data.name }}">permalink</a></h2>
  <div class="tags">{% for tag in blogpost.tags %}<a class="tag" href="/tag/{{ tag }}">{{ tag }}</a>{% endfor %}</div>
  <div class="blogpost-content">
  {{ blogpost.render }}
  </div>
</div>