-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (59 loc) · 1.58 KB
/
index.html
File metadata and controls
64 lines (59 loc) · 1.58 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
---
layout: page
title: Posts
tagline:
---
{% include JB/setup %}
{% for post in site.posts limit:5 %}
<div class="row">
<div class="span8">
<h2> <a href="{{ BASE_PATH }}{{ post.url }}">{{ post.title }}</a> {% for category in post.categories %} <a href="{{ BASE_PATH }}{{ site.JB.categories_path }}#{{ category }}-ref"><small>{{ category }}</small></a> {% endfor %} </h2>
<p>
{{ post.content }}
</p>
<a href="{{ BASE_PATH }}{{ post.url }}/#comments-ref">Comment...</a>
</div>
<div class="span4">
<ul>
<li>
<h4>Published</h4>
<div class="date"><em><span>{{ post.date | date_to_long_string }}</span></em></div>
</li>
<!--
{% unless post.description == empty %}
<li>
<h4>Summary</h4>
{{ post.description }}
</li>
{% endunless %}
{% unless post.categories == empty %}
<li>
<h4>Categories</h4>
<ul class="tag_box inline">
{% assign categories_list = post.categories %}
{% include JB/categories_list %}
</ul>
</li>
{% endunless %}
-->
<li>
{% unless post.tags == empty %}
<h4>Tags</h4>
<ul class="tag_box inline">
{% assign tags_list = post.tags %}
{% include JB/tags_list %}
</ul>
{% endunless %}
</li>
</ul>
</div>
</div>
<hr />
{% endfor %}
<div class="pagination">
<div style="text-align:center;">
<ul>
<li><a href="{{ BASE_PATH }}{{ site.JB.archive_path }}">Archive</a></li>
</ul>
</div>
</div>