-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
48 lines (32 loc) · 975 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
37
38
39
40
41
42
43
44
45
46
47
---
title: The Blog | Andy Davies
layout: master
content_meta: "The blog of Andy Davies, a web developer from Wirral, Merseyside. Writing about web development, programming, and learning to code."
redirect_from:
- /blog.html
---
<h1 class="page-title">The Blog</h1>
<div class="article-index">
{% for post in site.posts %}
<article class="article-preview">
<h2 class="article-preview-heading">
<a href="{{ post.url }}">
{{ post.short_title }}
</a>
</h2>
<time>{{ post.date | date: "%-d %B %Y" }}</time>
<div class="tag-wrapper">
{% for tag in post.tags %}
<div class="tag">{{ tag }}</div>
{% endfor %}
</div>
<div class="article-preview-excerpt">
<img src="{{ site.baseurl }}/{{ post.small_image_url }}" alt="article image">
<div>
<p>{{ post.excerpt }}</p>
<a href="{{ post.url }}" class="article-preview-link">Read more</a>
</div>
</div>
</article>
{% endfor %}
</div>