-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (33 loc) · 886 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
---
layout: default
title: net.toyknight.home
---
<div id="home" class="page-content wc-container">
<div class="posts">
{% for post in site.posts limit:10 %}
<div class="post">
<h1 class="post-title">
<a href="{{ post.url }}">
{{ post.title }}
</a>
</h1>
<p class="post-meta">
{% if post.categories.size > 0 %}
<span class="categories">
{{ post.categories | array_to_sentence_string }}
</span> |
{% endif %}
<span class="post-date">
{{ post.date | date: "%b %-d, %Y" }}
</span>
</p>
<p class="post-description">{{ post.description }}</p>
<p>
<a href="{{ post.url }}" title="{{ post.title}}">
Read More >>
</a>
</p>
</div>
{% endfor %}
</div>
</div>