-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
39 lines (36 loc) · 1 KB
/
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
37
38
39
---
layout: default
title: Blog
---
<div class="full">
<h1 class="entry-title">DisentangleThings</h1>
<div class="entry-content full-content">
<h2>
The EWEDB Tutorials and News (reverse chronological order).
</h2>
<div class="clear"></div>
</div>
</div>
<ol class="archive">
{% for post in site.posts %}
<li>
<div class="excerpt">
<strong class="entry-title">
<a href="{{ post.url }}" title="{{ post.title }}" rel="bookmark">{{ post.title }}</a>
</strong>
<span class="date small">
<abbr class="published" title="{{ post.date }}">{{ post.date | date_to_string }}</abbr>
</span>
<p class="alt-font">
Posted in
{% for category in post.categories %}
<a href="/categories/{{ category }}" title="{{ category }}" rel="category tag">{{ category }}</a>
{% endfor %}
</p>
<p class="comments-link">
<a href='{{post.url}}#disqus_thread'>Comments</a>
</p>
</div>
</li>
{% endfor %}
</ol>