]> git.somenet.org - somenet/www-somenet-org.git/blob - theme/templates/article.html
content/ntp.md
[somenet/www-somenet-org.git] / theme / templates / article.html
1 {% extends "base.html" %}
2 {% block title %}{{ article.title|striptags|e }}{% endblock %}
3 {%- block content %}
4 <div class="row">
5     <div class="span8">
6     <section id="content" class="well">
7     <article>
8         <header>
9             <h1><a href="{{ pagename }}" rel="bookmark" title="Permalink to {{ article.title | striptags }}">{{ article.title}}</a></h1>
10             {% include 'article_infos.html' %}
11         </header>
12         <div class="entry-content">
13         {{ article.content }}
14         </div>
15     </article>
16 </section>
17 </div>
18 </div>
19 {% endblock %}