ruby-x.github.io/_layouts/news.html
2014-05-26 22:04:19 +03:00

34 lines
785 B
HTML

---
layout: site
---
<!-- story -->
<div class="row vspace10">
<div class="span12 center">
<h2><span>A weBlog of things in cronical order</span></h2>
<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>