]> git.ipfire.org Git - ipfire.org.git/blame - src/templates/blog/post.html
Add new blog post design
[ipfire.org.git] / src / templates / blog / post.html
CommitLineData
12e5de7e
MT
1{% extends "base.html" %}
2
3{% block title %}{{ post.title }}{% end block %}
4
5{% block main %}
6 <div class="card">
7 <div class="card-body blog-post">
8 <h5 class="mb-0">{{ post.title }}</h5>
9
10 <p class="small text-muted">
11 {{ _("by") }} <a href="/authors/{{ post.author.uid }}">{{ post.author.name }}</a>,
12 {{ locale.format_date(post.published, shorter=True, relative=False) }}
13 </p>
14
15 {% raw post.text %}
16 </div>
17 </div>
18{% end block %}