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, 0 insertions, 37 deletions
diff --git a/themes/rusted/templates/article.html b/themes/rusted/templates/article.html
deleted file mode 100644
index 416f91b..0000000
--- a/themes/rusted/templates/article.html
+++ /dev/null
@@ -1,37 +0,0 @@
-{% 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 %}