Update index.html

This commit is contained in:
mathias 2016-04-08 22:54:32 +03:00
parent 7225a43d73
commit a7514880bd

View file

@ -8,6 +8,7 @@
<title>{{ site.title }}</title>
<meta name="description" content="{{ site.description }}">
<link rel="canonical" href="{{ site.url }}/">
<link rel="alternate" type="application/atom+xml" href="/feed.xml">
<style type="text/css">
/* Fonts */
@font-face {
@ -404,10 +405,12 @@
<h2>News</h2>
<div id="box">
<ul>
{% for post in site.posts %}<li>
{% for post in site.posts %}
<li>
{{ post.content }}
<span>{{ post.date | date: "%B %e, %Y" }}</span>
</li>{% endfor %}
</li>
{% endfor %}
</ul>
</div>
</div>