aboutsummaryrefslogtreecommitdiffstats
path: root/zurb-F5-basic/templates/article.html.isso
blob: cd7f1573281711d8b79f3ef327ab6f3e60c3ef04 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{% extends "base.html" %}
{% block title %}{{ article.title|striptags }}{% endblock %}
{% block content %}
<article>
    <header>
        <h3 class="article-title"><a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark"
        title="Permalink to {{ article.title|striptags }}">{{ article.title}}</a></h3>
        {% include 'twitter.html' %}
    </header>

    {% include 'article_infos.html' %}
    {{ article.content }}
    {% include 'article_infos_bottom.html' %}

    {% if article.status != "draft" %}
	<h4>Comments</h4>
    {% include 'comments.html' %}
    {% endif %}
</article>
{% endblock %}