ruby-x.github.io/_layouts/news.html
2017-11-28 20:59:01 +02:00

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>