ruby-x.github.io/_layouts/news.html

25 lines
499 B
HTML
Raw Normal View History

2014-05-26 21:04:19 +02:00
---
layout: site
---
2017-11-28 19:59:01 +01:00
<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>
2014-05-26 21:04:19 +02:00
</div>
2017-11-28 19:59:01 +01:00
<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>
2014-05-26 21:04:19 +02:00
</li>
2017-11-28 19:59:01 +01:00
{% endfor %}
</ul>
2014-05-26 21:04:19 +02:00
</div>
</div>