-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (26 loc) · 930 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
---
layout: default
title: 'blog of gzfrancisco'
keywords: 'home, blog'
lang: 'en'
---
<article>
<header class="index">
<h1>gzfrancisco Blog's</h1>
<a href="/about/me">about me</a>
</header>
<h1>Cowabunga!</h1>
<p>Hi! my name is Francisco Granados (@gzfrancisco) developer and economist. This is my web blog and it's about code, music and my life.</p>
<p>If you need my services, <a href="/about/my/services/">here</a> are a list with some of them.</p>
<p>As developer I write lot, but many times never give to the comunity, this is my chance.</p>
<div id="recent-post">
<h2>Recent post in english</h2>
<ul>
{% for post in site.posts %}
{% if post.lang == page.lang %}
<li><a href="{{ post.url }}">{{ post.title }}</a><time datetime="{{ post.date | date_to_xmlschema }}">{{ post.date | date_to_string }}</time></li>
{% endif %}
{% endfor %}
</ul>
</div>
</article>