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