-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (24 loc) · 1.13 KB
/
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: base
title: Home
identity: home
---
<div id="content">{% assign latest_post = site.posts.first %}
<div class="post">
<h2 class="post_title"><a href="{{ latest_post.url }}" title="{{ latest_post.title }}">{{ latest_post.title }}</a></h2>
<span class="post_date">{{ latest_post.date | date_to_string }}, {{ latest_post.time }}</span>
<div class="post_body">
{{ latest_post.content }}
</div>
<div class="post_meta">
<span>Topic: <a href="/archive/topic/{{ latest_post.topic }}/">{{ latest_post.topic }}</a></span>
<a class="comments" href="{{ latest_post.url }}#disqus_thread">Responses »</a>
</div>
</div>
<ul id="recent_posts">{% for post in site.posts limit:4 offset:1 %}
<li><a href="{{ post.url }}">{{ post.title }}<span>{{ post.date | date_to_string }}</span></a></li>{% endfor %}
</ul>
<div id="more">
<a href="/archive/">more →</a>
</div>
</div>