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

34 lines
786 B
HTML
Raw Normal View History

2014-05-26 21:04:19 +02:00
---
layout: site
---
<!-- story -->
<div class="row vspace10">
<div class="span12 center">
2014-06-13 14:09:47 +02:00
<h2><span>A weBlog of things in chronicle order</span></h2>
2014-05-26 21:04:19 +02:00
<p>I don't remember well, so here i keep track of things as they happen</p>
</div>
</div>
<div class="row vspace10">
<div class="span10">
<h2 class="center">{{page.title}}</h2>
<div>
<h5 class="center">Written by {{page.author}} on {{page.date | date_to_string}}.</h5>
{{content}}
</div>
</div>
<div class="span2">
<h2 class="center">Older</h2>
<div>
<ul class="nav nav-list">
{% for post in site.posts %}
<li><a href="{{ post.url }}">{{ post.title }} <small><small>{{ post.date | date: "%d.%m.%y" }} </small></small></a>
</li>
{% endfor %}
</ul>
</div>
</div>
</div>