projects
/
Ultimately_Untrue_Thought.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
color hearts
[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
{{ article.content }}
10
</article>
11
<hr />
12
{% endfor %}
13
14
{% endblock content %}