-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
29 lines (25 loc) · 1.02 KB
/
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
29
---
layout: default
title: Rodrigo Panachi's tech blog
excerpt: A Software Engineer that like to code and learn new things about technology and nerd/geek/hacking stuff. Sometimes I gather some ideas and experiences and write a post on this site.
---
{% include header.html %}
<main id="content" class="content" role="main">
{% for post in site.posts %}
<article class="post">
<header class="post-header">
<h2 class="post-title"><a href="{{ post.url }}">{{ post.title }}</a></h2>
</header>
<section class="post-excerpt">
{{ post.excerpt }} <a class="read-more" href="{{ post.url }}">»</a>
</section>
<footer class="post-meta">
<time class="post-date" datetime="{{ post.date | date:"%Y-%m-%d" }}">
{{ post.date | date_to_string }}
</time>
{% assign categories = post.categories %}
{% include categories.html %}
</footer>
</article>
{% endfor %}
</main>