-
Notifications
You must be signed in to change notification settings - Fork 2
/
blog.html
28 lines (27 loc) · 977 Bytes
/
blog.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
---
<!-- Banner -->
<section id="banner">
<div class="inner">
<h2>Blog</h2>
</div>
</section>
<section id="main" class="wrapper style1">
{% for post in site.posts %}
<div class="wrapper {% cycle 'style1', 'style2' %}">
<header class="major">
<h2><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h2>
<p class="post-meta">{{ post.date | date: "%b %-d, %Y" }}{% if post.author %} • {{ post.author }}{% endif %}{% if post.meta %} • {{ post.meta }}{% endif %}</p>
</header>
<section class="container">
{{ post.excerpt }}
</section>
<section class="special">
<ul class="actions">
<li><a href="{{ site.baseurl }}{{ post.url }}" class="button {% cycle '', 'alt'%}">Read More</a></li>
</ul>
</section>
</div>
{% endfor %}
</section>