aboutsummaryrefslogblamecommitdiffstats
path: root/pelican-bootstrap3/templates/article.html
blob: 8588bdae42fd5d81c959194cf387d6b666d78d15 (plain) (tree)
1
2
3
4
5
6




                                                  
                                        






















                                                                  
{% extends "base.html" %}
{% block title %}{{ article.title }}{% endblock %}
{% block content %}
    <section id="content">
        <article>
            <header class="page-header">
                <h1>
                    <a href="{{ SITEURL }}/{{ article.url }}"
                       rel="bookmark"
                       title="Permalink to {{ article.title }}">
                        {{ article.title }}
                    </a>
                </h1>
            </header>
            <div class="entry-content">
                <div class="panel">
                    <div class="panel-body">
                        {% include "includes/article_info.html" %}
                    </div>
                </div>
                {{ article.content }}
            </div>
            <!-- /.entry-content -->
            {% include 'includes/addthis.html' %}
            {% include 'includes/comments.html' %}
        </article>
    </section>

{% endblock %}