diff options
| author | Yuval Adam <_@yuv.al> | 2017-08-07 08:55:33 +0300 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2017-08-07 08:57:40 +0300 |
| commit | 14958653b9bf92f56316511e8080baeeaf409b97 (patch) | |
| tree | 65503639105fa6074bcbeb11164cc82a70828c4e /templates/blog.html | |
Basic structure and initial homepage
Diffstat (limited to 'templates/blog.html')
| -rw-r--r-- | templates/blog.html | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/templates/blog.html b/templates/blog.html new file mode 100644 index 0000000..deb2148 --- /dev/null +++ b/templates/blog.html @@ -0,0 +1,9 @@ +{% extends 'base.html' %} + +{% block body %} +<ul> +{% for post in posts %} + <li><a href="{{ post.url }}">{{ post.title }}</a></li> +{% endfor %} +</ul> +{% endblock %} |
