aboutsummaryrefslogtreecommitdiffstats
path: root/martyalchin/templates/article.html
blob: f5c6591c8dccef0806bb452ae14a595ef63efb45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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 %}