25 lines
499 B
HTML
25 lines
499 B
HTML
---
|
|
layout: site
|
|
---
|
|
|
|
<div class="row">
|
|
<div>
|
|
<h1 class="center">{{page.title}}</h2>
|
|
<p class="center"><span> Written by {{page.author}} on {{page.date | date_to_string}}. </span></p>
|
|
</div>
|
|
<div>
|
|
{{content}}
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<h2 class="center">Older</h2>
|
|
<div>
|
|
<ul class="nav">
|
|
{% for post in site.posts %}
|
|
<li><a href="{{ post.url }}">{{ post.title }} <small>{{ post.date | date: "%d.%m.%y" }} </small></a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
</div>
|