-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
37 lines (23 loc) · 893 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
34
35
36
37
---
layout: default
---
<div class="home">
<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="360" viewBox="0 0 201 97">
{% include map.svg %}
{% assign totalposts = site.posts | size %}
{% assign day = totalposts | minus:1 %}
{% for project in site.data.projects limit:1 offset:day %}
{{ project.point_html }}
{% endfor %}
</svg>
<ul class="posts">
{% for post in site.posts %}
<li>
<a class="post-link front-page" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
<span class="post-date front-page">{{ post.date | date: "%b %-d, %Y" }}</span>
</li>
{% endfor %}
</ul>
<p class="our-journey"><a href="{{ "/journey/" | prepend: site.baseurl }}">The Full Journey.</a></p>
<p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS</a></p>
</div>