33 lines
692 B
HTML
33 lines
692 B
HTML
{% 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 %}
|