aboutsummaryrefslogtreecommitdiffstats
path: root/martyalchin/templates/article.html
diff options
context:
space:
mode:
Diffstat (limited to 'martyalchin/templates/article.html')
-rw-r--r--martyalchin/templates/article.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/martyalchin/templates/article.html b/martyalchin/templates/article.html
new file mode 100644
index 0000000..f5c6591
--- /dev/null
+++ b/martyalchin/templates/article.html
@@ -0,0 +1,13 @@
+{% extends "base.html" %}
+{% block title %}{{ article.title }}{%endblock%}
+{% block content %}
+ <h1>{{ article.title }}</h1>
+ <div class="info">
+ {% if article.author %}
+ By <a class="url fn" href="#">{{ article.author }}</a>
+ {% endif %}
+ on <a>{{ article.date.locale_date }}</a>
+ about <a href="{{ SITEURL }}/category/{{ article.category }}.html">{{ article.category }}</a>
+ </div>
+ {{ article.content }}
+{% endblock %}