Initial commit
This commit is contained in:
32
templates/blogpost.html
Normal file
32
templates/blogpost.html
Normal 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 %}
|
||||
Reference in New Issue
Block a user