-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (25 loc) · 1.02 KB
/
index.html
File metadata and controls
26 lines (25 loc) · 1.02 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
---
layout: default
title: An Open Source Testing Blog
---
<div class="posts">
{% for post in paginator.posts %}
<div class="post-inner">
<h2><a href="{{ post.url }}">{% if post.display-title %}{{ post.display-title }} {% else %}{{ post.title }}{% endif %}</a></h2>
<div class="meta">
<span class="date">{{ post.date | date_to_string }}</span><span class='meta-divider'>
| </span><span class="author">By {{ post.author }}</span><span class='meta-divider'>
| </span><span class="comments"><a href="{{ post.url }}#disqus_thread">Comments</a></span><span class='meta-divider'>
| </span><span class="tags">
<img alt="Tags" class="icon" src="/images/tag.gif" />
{% for category in post.categories %}
<a href="/tags.html#{{ category }}">{{ category }}</a>
{% endfor %}
</span>
</div>
<div class="preview">
{{ post.content }}
</div>
</div>
{% endfor %}
</div>