summaryrefslogtreecommitdiffstats
path: root/themes/rusted/templates/article.html
diff options
context:
space:
mode:
Diffstat (limited to 'themes/rusted/templates/article.html')
-rw-r--r--themes/rusted/templates/article.html37
1 files changed, 37 insertions, 0 deletions
diff --git a/themes/rusted/templates/article.html b/themes/rusted/templates/article.html
new file mode 100644
index 0000000..416f91b
--- /dev/null
+++ b/themes/rusted/templates/article.html
@@ -0,0 +1,37 @@
+{% extends "base.html" %}
+
+{% block title %}
+{{ article.title }} {%if article.subtitle %} - {{ article.subtitle }} {% endif %} · {{ super() }}
+{% endblock title %}
+
+{% block head_description %}
+{% if article.summary %}
+{{ article.summary|striptags }}
+{% endif %}
+{% endblock head_description %}
+
+{% block meta_tags_in_head %}
+{% if article.tags or article.category or article.keywords %}
+<meta name="keywords" content="{{ [article.tags|join(', '), article.category, article.keywords]|join(', ') }}" />
+{% endif %}
+{% endblock meta_tags_in_head %}
+
+{% block content %}
+
+<div class="row text-center">
+ <h3> Like what you see? Subscribe! </h3>
+</div>
+
+{% include "_subscribe-form.html" %}
+
+<div class="post">
+ <header class="post-header">
+ {% include "_post-title.html" %}
+ </header>
+
+ <article class="post-content">
+ {{ article.content }}
+ </article>
+
+</div>
+{% endblock content %}