aboutsummaryrefslogtreecommitdiffstats
path: root/franticworld/templates/index.html
blob: e3b8c8169f48c64833a33983691c852ddbe7fe1e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{% extends "base.html" %}
{% block content %}

{% for article in articles_page.object_list %}
<div class="summarycontainer">
	<div class="metabox">
		<p class="metaday">{{ article.date|strftime('%j') }}</p>
		<p class="metayear">{{ article.date|strftime('%Y') }}</p>
		<p class="metacategory">{{ article.category }}</p>
	</div>
	<div class="summarybox">
		<a class="summarytitle" href="{{ BLOGURL }}/{{ article.url }} " >{{ article.title }}</a>
		{{ article.summary }}
		<a class="btnmore" href="{{ BLOGURL }}/{{ article.url }}">more ...</a>
	</div>
</div>
{% endfor %}

{% include 'pagination.html' %}
{% endblock content %}