aboutsummaryrefslogtreecommitdiffstats
path: root/pelican-bootstrap3/templates/article.html
diff options
context:
space:
mode:
Diffstat (limited to 'pelican-bootstrap3/templates/article.html')
-rw-r--r--pelican-bootstrap3/templates/article.html29
1 files changed, 29 insertions, 0 deletions
diff --git a/pelican-bootstrap3/templates/article.html b/pelican-bootstrap3/templates/article.html
new file mode 100644
index 0000000..4601627
--- /dev/null
+++ b/pelican-bootstrap3/templates/article.html
@@ -0,0 +1,29 @@
+{% extends "base.html" %}
+{% block title %}{{ article.title }}{% endblock %}
+{% block content %}
+ <section id="content">
+ <article>
+ <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 %}