-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
29 lines (29 loc) · 965 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
29
---
layout: default
title: Viajando nas férias
description:
Dicas e compartilhamento de nossas experiencias de viagens, permitindo trocar
conhecimentos sobre roteiros, ajudando pessoas a organizar suas viagens sozinhas.
comments: false
---
<div id="features-wrapper">
<div class="container">
<div class="row">
{% for post in paginator.posts %}
<div class="4u 12u(medium)">
<section class="box feature">
<a href="{{ post.url }}" class="image featured"><img src="{{ post.thumb }}" alt="" /></a>
<div class="inner">
<header>
<h2><a href="{{ post.url }}" class="image featured">{{ post.title }}</a></h2>
<time>{{ post.date | date: '%d/%m/%Y' }}</time>
</header>
<p>{{post.description}}</p>
</div>
</section>
</div>
{% endfor %}
</div>
<!-- <a href="/posts/">Ver todos</a> -->
</div>
</div>