aboutsummaryrefslogtreecommitdiffstats
path: root/bootlex/templates/article.html
blob: a407af81f5cee1701f6dc400dac62ab109bc7aac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{% extends "base.html" %}
{% block title %}{{ article.title }}{%endblock%}
{% block content %}        
<div id="content">    
    <div class="header">
        <h1>{{ article.title }}</h2>
    </div>
    <p class="meta"><small><span>{% if article.author %}<a href="{{ SITEURL }}author/{{ article.author }}/">{{ article.author }}</a> - {% endif %}</span><span>{{ article.locale_date }}</span> - <span class="tags">{% if article.tags %}{% for tag in article.tags %}<a href="/tag/{{ tag }}/">{{ tag }}</a>{% if not loop.last %}, {% endif %}{% endfor %}{% endif %}</small></p>
        <div class="entry-content">
        {{ article.content }}
        </div><!-- /.entry-content -->
</div>
{% endblock %}