-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
36 lines (32 loc) · 993 Bytes
/
blog.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
---
layout: default
permalink: /blog/
---
<div class="home">
<ul class="post-list">
{% for post in site.posts %}
<li class="post-item">
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
<h2>
<a class="post-link" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a>
</h2>
<p style="display:none;" class="post-excerpt">
{{ post.title }}
</p>
<hr>
<ul class="tag-list blog" style="float:left; display:none;">
{% for tag in post.tags %}
<li><a class="tag" href="/posts/{{ tag.first }}">{{ tag }}</a></li>
{% endfor %}
</ul>
<div class="read-block" style="float:right;">
<a style="display:none;" href="{{ post.url | prepend: site.baseurl }}">Read</a>
</div>
</li>
<br>
<div style="clear:both; border-bottom:0px solid #ccc;"></div>
<br>
<br><br>
{% endfor %}
</ul>
</div>