-
Notifications
You must be signed in to change notification settings - Fork 1
/
note.html
47 lines (46 loc) · 1.31 KB
/
note.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
39
40
41
42
43
44
45
46
47
---
layout: default
title: note
---
<div class="note">
<div class="note-header">
<div class="categories-bar">
<a href="javascript:void(0);"><span class="glyphicon glyphicon-align-justify"></span></a>
<ul>
{% for category in site.categories %}
<li>
<a class="category" href="{{ site.baseurl }}/{{ category | first }}.html">{{ category | first }} ({{ category | last | size }})</a>
</li>
{% endfor %}
</ul>
</div>
<h1>Blog Notes</h1>
</div>
<div class="posts row">
<div class="time-line col-sm-9">
{% for post in site.posts %}
<div class="time col-sm-3 col-xs-3">
<p>{{ post.date | date_to_string }}</p>
</div>
<div class="time-content col-sm-9 col-xs-9">
<div class="circle"></div>
<div class="time-title">
<a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a>
</div>
</div>
{% endfor %}
</div>
<div class="categories col-sm-3">
<div class="solid-bar col-sm-12">
<p>categories</p>
<ul>
{% for category in site.categories %}
<li>
<a href="{{ site.baseurl }}/{{ category | first }}.html">{{ category | first }} ({{ category | last | size }})</a>
</li>
{% endfor %}
</ul>
</div>
</div>
</div>
</div>