-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (36 loc) · 1.06 KB
/
index.html
File metadata and controls
36 lines (36 loc) · 1.06 KB
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
---
layout: default
title: Your New Jekyll Site
---
<div class="home">
<div class="looped-content">
<h2>Posts</h2>
<ul class="posts">
{% for post in site.categories.blog %}
<li>
<a class="post-item" href="{{ post.url }}">
<img src="{{ post.thumbnail }}" width="50" height="50" class="post-thumb" />
<span class="post-title">{{post.title}}</span>
<time class="icon -calendar" datetime="{{post.date}}">{{post.date | date_to_string}}</time>
</a>
</li>
{% endfor %}
</ul>
</div>
<div class="looped-content">
<h2>Work</h2>
<ul class="posts">
{% for post in site.categories.work %}
<li><span>{{ post.date | date_to_string }}</span> » <a class="btn" href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
</div>
<div class="looped-content">
<h2>Blog Posts</h2>
<ul class="posts">
{% for post in site.posts %}
<li><span>{{ post.date | date_to_string }}</span> » <a class="btn" href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
</div>
</div>