]> git.ipfire.org Git - ipfire.org.git/blob - templates/planet/posting.html
.gitignore: Add .vscode
[ipfire.org.git] / templates / planet / posting.html
1 {% extends "../base.html" %}
2
3 {% block title %}{{ entry.title }}{% end block %}
4
5 {% block container %}
6 {% module PlanetEntry(entry) %}
7
8 <div class="container mb-6">
9 <div class="col-12">
10 <small>
11 {{ _("Posted:") }} {{ locale.format_date(entry.published, shorter=True, relative=False) }}
12
13 &bull;
14
15 {{ _("One view", "%(views)s views", entry.views) % { "views" : entry.views } }}
16 </small>
17 </div>
18 </div>
19 {% end block %}