-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (25 loc) · 793 Bytes
/
Copy pathindex.html
File metadata and controls
29 lines (25 loc) · 793 Bytes
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
---
<!-- Main -->
<div id="main">
<section>
<div class="row">
{% for post in site.posts %}
<article class="{% cycle '6u', '6u$' %} 12u(small)">
<header>
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
</header>
<section>
{{ post.excerpt }}
</section>
<footer>
<ul class="actions">
<li><a href="{{ post.url }}" class="button">Read More</a></li>
</ul>
</footer>
</article>
{% endfor %}
</div>
</section>
</div>