projects
/
Ultimately_Untrue_Thought.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
"Nothing New Under the Sun"
[Ultimately_Untrue_Thought.git]
/
theme
/
templates
/
index.html
1
{% extends "base.html" %}
2
{% block content_title %}{% endblock %}
3
4
{% block content %}
5
6
{% for article in articles %}
7
<article>
8
<h1><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></h1>
9
{% include 'metadata.inc.html' %}
10
{{ article.content }}
11
</article>
12
<hr />
13
{% endfor %}
14
15
{% endblock content %}