forked from barryclark/jekyll-now
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (45 loc) · 1.91 KB
/
index.html
File metadata and controls
49 lines (45 loc) · 1.91 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
---
layout: home
title: BLOG
description: "The personal blog of Richard Bradshaw, aka The Friendly Tester, a Software Tester, Trainer and Public Speaker from Manchester, UK."
headline: My Thoughts on Software Testing
tags: []
---
{% for post in paginator.posts %}
<article class="notepad-index-post post row">
<div class="small-12 medium-3 large-2 columns datetime">
<span class="notepad-post-meta">
<time datetime="{{ post.date | date_to_xmlschema }}">
<span class="day">
{{ post.date | date: "%d" }}
</span>
<span class="month-year">
{{ post.date | date: "%B %Y" }}
</span>
</time>
</span>
</div>
<div class="small-12 medium-9 large-10 columns">
<header class="notepad-post-header">
<h3 class="notepad-post-title">
<a href="{{ site.url }}{{ post.url }}">
{{ post.title }}
</a>
</h3>
</header>
<section class="notepad-post-excerpt">
<p>{{ post.content | strip_html | truncatewords:40 }}</p>
</section>
<div class="notepad-index-post-tags">
{% for tag in post.categories %}<a href="{{ site.url }}/categories/index.html#{{ post.categories | cgi_encode }}" title="Other posts from the {{ tag }} category">{{ tag }}</a>{% unless forloop.last %} {% endunless %}{% endfor %}
</div>
</div>
{% if forloop.last == true %}
<div class="moreposts">
<p>
<span>Find more posts by <a href="{{site.url}}/categories">categories</a> or <a href="{{site.url}}/tags">tags</a>, or scroll through the <a href="{{site.url}}/archive">archive</a>.</span>
</p>
</div>
{% endif %}
</article>
{% endfor %}