-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (30 loc) · 984 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
38
---
layout: default
---
<div class="home">
<div class="intro highlight">
<pre><code>// TODO: Make an intro for the blog</code></pre>
</div>
<hr>
<h2 class="section-heading">Recent Posts</h2>
<ul class="post-list">
{% for post in site.posts %}
<li>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">
<span class="post-meta">
{% for tag in post.tags %}
<span class="tag tag-{{tag}}">{{ tag }}</span>
{% endfor %}
{{ post.date | date: site.date_format }}
</span>
<span class="post-title">
{{ post.title | markdownify }}
</span>
</a>
<!--
<span>{{ post.excerpt }}</span>
-->
</li>
{% endfor %}
</ul>
</div>