-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (21 loc) · 663 Bytes
/
index.html
File metadata and controls
26 lines (21 loc) · 663 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
---
layout: default
---
<div class="home">
<h1>Recent Posts</h1>
<ul class="post-list" itemscope itemtype="http://schema.org/Blog">
{% for post in site.posts %}
<li>
<h2 itemscope itemtype="http://schema.org/BlogPosting">
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}"
itemprop="name">{{ post.title }}</a>
<span class="post-meta" itemprop="author" itemscope
itemtype="http://schema.org/Person">
{% if post.author %}
<span itemprop="name">{{ post.author }}</span> • {% endif %}
{{ post.date | date: "%b %-d, %Y" }}</span>
</h2>
</li>
{% endfor %}
</ul>
</div>