Initial commit

This commit is contained in:
2016-01-20 16:56:31 +01:00
commit 60d55652c0
26 changed files with 1668 additions and 0 deletions

32
templates/blogpost.html Normal file
View File

@@ -0,0 +1,32 @@
{% extends "base.html" %}
{% block head %}
<title> TipPy Blog</title>
{% endblock %}
{% block nav %}
{% include "nav.html" with ls=ls season=season %}
{% endblock %}
{% block body %}
<div id="content-main">
<div class="row">
<div class="col-md-8">
<article>
<header>
<h3> {{post.title}} </h3>
<p>
geposted am
<time datetime="{{post.created|date:""}}">
{{post.created|date}} von {{post.author}}
</time>
</p>
</header>
<p class="description">
{{post.description}}
</p>
{{post.content|safe}}
</article>
</div>
</div>
</div>
{% endblock %}