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