-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (20 loc) · 798 Bytes
/
index.html
File metadata and controls
25 lines (20 loc) · 798 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
---
layout: default
---
<div class="home">
<h1 class="page-heading">Posts</h1>
<ul class="post-list">
{% for post in site.posts %}
<li>
<a class="post-link" style="display:inline;" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
<span class="reading-time post-meta pull-right" style="margin-left: 5px;"><b>~ </b>{{ post.date | date: "%b %d, %Y" }}</span>
{% if post.tags.first == 'index' %}
{% for tag in post.tags offset:1 %}
<span class="pull-right label label-default label-index" style="margin: 1px;">{{ tag }}</span>
{% endfor %}
{% endif %}
</li>
{% endfor %}
</ul>
<p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS</a></p>
</div>