]> jfr.im git - irc/freenode/web-7.0.git/blob - templates/article.html
Add 2020-11-28-chanserv-cloak-changes.md (#476)
[irc/freenode/web-7.0.git] / templates / article.html
1 {% extends "base.html" %}
2 {% import "artinfo.html" as artinfo with context %}
3 {% set title=article.title %}
4 {% set robots=article.robots %}
5 {% block content %}
6 <div class="main">
7 {%- if article.source.meta.imported is defined %}
8 <div class="art-warning">
9 This article was imported from freenode's wordpress blog, and is
10 likely out of date. It's preserved here in the interest of
11 history, but please don't treat it as an authoritative source in
12 any context. Links on this page may be out of date and broken.
13 </div>
14 {%- endif %}
15 <div class="art-info">
16 {{ artinfo.info(article) }}
17 </div>
18 <div class="art-body">
19 {{ article.render() }}
20 </div>
21 {{ artinfo.nav(article) }}
22 </div>
23 {% endblock content %}