aboutsummaryrefslogtreecommitdiff
path: root/Default page/templates/index.html
blob: 9175328640b2c8d4b944bfd7314092b69e3eab57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{% extends "base.html" %}
{% block head %}
{{ super() }}
<link rel="stylesheet" type="text/css" href="/index.css">
{% endblock %}
{% block content %}
{% for article in articles %}
<a href="{{ article.name }}">
	<img src="{{ article.name }}/main_thumbnail.jpg"/>
	<div>
		<div>
			<h3>{{ article.name }}</h3>
			<span>{{ article.created }}</span>
			<p>{{ article.description }}</p>
		</div>
	</div>
</a>
{% endfor %}
{% endblock %}