-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
33 lines (28 loc) · 899 Bytes
/
index.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
---
layout: default
---
<div class="home">
<h1 class="page-heading">Posts</h1>
<ul class="post-list">
{% for post in site.posts %}
{% if post.categories contains "placeholders" %}
{% continue %}
{% endif %}
<li>
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
<div class="row">
<div class="col-md-3 thumbnail">
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}"><img src="{{ post.thumbnail}}"></a>
</div>
<div class="col-md-9">
<h2>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
</h2>
</div>
</div>
</li>
{% endfor %}
</ul>
<p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS</a></p>
</div>