Files
Sourcetrail/web/blog/index.html
T
Eberhard Graether c4ef18fb6d web: Added jekyll blog with hpstr theme and first post for release 0.6
The README contains the commands for building the blog in all different configurations.
2016-05-10 14:10:21 +02:00

18 lines
480 B
HTML

---
layout: post-index
title: All Posts
comments: false
image:
feature: index_background2.png
---
<article>
{% for post in site.posts %}
<div class="index-post">
<span class="index-post-date">{{ post.date | date: "%b %-d, %Y" }}</span>
<h4 class="index-post-title"><a href="{{ site.url }}{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a></h4>
<p class="index-post-description">{{ post.description }}</p>
</div>
{% endfor %}
</article>