-
Notifications
You must be signed in to change notification settings - Fork 38
/
index.html
27 lines (25 loc) · 827 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
---
layout: default
---
{% assign posts_count = (paginator.posts | size) %}
<div class="home">
{% if posts_count > 0 %}
<div class="posts">
<h1 class="center" style="font-weight: 300;">Dates Available</h1>
{% for post in paginator.posts %}
<div class="post py2">
<a href="{{ site.baseurl }}/data/{{ post.date | date: '%Y-%m-%d' }}.json" class="post-link center"><h3 class="h1 post-title">{{ post.date | date: site.date_format }}</h3></a>
<!-- <span class="post-summary">
{% if post.summary %}
{{ post.summary }}
{% else %}
{{ post.excerpt }}
{% endif %}
</span>
</div> -->
{% endfor %}
</div>
{% else %}
<h1 class='center'>{{ site.text.index.coming_soon }}</h1>
{% endif %}
</div>