projects
/
styx.blog
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Get a basic blog up and running
[styx.blog]
/
core
/
templates
/
core
/
post_detail.html
1
{% extends 'core/base.html' %}
2
3
{% block content %}
4
5
<article>
6
<h1>{{ object.title }}</h1>
7
8
<time>{{ post.publication_utc|date:'Y-m-d H:i' }}</time>
9
10
<div class='body'>
11
{{ object.body_html }}
12
</div>
13
</article>
14
15
{% endblock %}