forked from katydecorah/katydecorah.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
16 lines (16 loc) · 806 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
---
layout: front-page
title: Katy DeCorah
---
<div class="all-posts" id="adventures">
{% for post in paginator.posts %}<a href="{{ post.url }}" class="post-link">
<div class="post-img-container">
<div style="background-image:url({% if post.image %}{{ post.image }}{%else%}http://placehold.it/400{%endif%})" class="post-img"></div>
</div>
<div class="post-meta">
<div class="post-title">{{ post.title }}</div>
<div class="post-date small">{{post.category}} × {{ post.date | date: "%B %-d, %Y" }}{% if post.updated %}<span class="post-date-updated small">Updated {{ post.updated | date: "%B %d, %Y" }}</span>{% endif %}{% if post.elsewhere-site %}<span class="post-elsewhere-label"> × {{ post.elsewhere-site }} </span>{% endif %}</div>
</div>
</a>{% endfor %}
</div>
{% include paginator.html %}