]> jfr.im git - irc/freenode/web-7.0.git/blame - templates/article.html
readme: adds missing dependency (build fails without it)
[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 %}
7cd640de 4{% set robots=article.robots %}
57238ce0 5{% block content %}
50d68b4a 6<div class="main">
df8e5765
EK
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
48f885b6 12 any context. Links on this page may be out of date and broken.
df8e5765
EK
13 </div>
14 {%- endif %}
5a791e57
EK
15 <div class="art-info">
16 {{ artinfo.info(article) }}
17 </div>
b9f1cb69
EK
18 <div class="art-body">
19 {{ article.render() }}
20 </div>
21 {{ artinfo.nav(article) }}
57238ce0
EK
22</div>
23{% endblock content %}