-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.html
39 lines (30 loc) · 965 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
29
30
31
32
33
34
35
36
37
38
39
---
title: Blog
permalink: /blog/
order: 2
---
<div class="blog">
<div class="sub-header">
<p>
here I just write things that happen in my daily life, either developing or designing something.
</p>
</div>
<div class="wrapper">
<div class="posts">
{% for post in site.posts %}
<article class="..." vocab="http://schema.org/" typeof="TechArticle">
<div>
<h2>
<a property="url" href="{{ post.url | prepend: site.baseurl }}" rel="bookmark" title="{{ post.title | escape }}" class="post-link">
<span property="name">{{ post.title | escape }}</span>
</a>
</h2>
<div class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</div>
<p>{{ post.excerpt }}</p>
<a href="{{ post.url | prepend: site.baseurl }}" class="cr">Read more...</a>
</div>
</article>
{% endfor %}
</div>
</div>
</div>