Skip to content

Commit 2b519a7

Browse files
committed
Add v2 posts to home page
- Add tags to old content
1 parent 7ced2c5 commit 2b519a7

File tree

4 files changed

+22
-1
lines changed
  • src
    • writing
      • 2016-04-12---of-the-web
      • 2016-04-16---everything-i-did-to-make-this-site-accessible
      • 2016-04-30---everything-i-did-to-make-this-site-fast-part-1

4 files changed

+22
-1
lines changed

src/index.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,13 @@ layout: layouts/base
66

77
Rhymes with scratch.
88

9-
_I'm rebuilding and redesigning this website in the open. [Follow along if you wish](https://github.com/kylegach/kylegach.com)._
9+
_I'm rebuilding and redesigning this website in the open. [Follow along if you wish](https://github.com/kylegach/kylegach.com)._
10+
11+
Here are the related posts to that effort:
12+
13+
{% if collections.v2.length %}
14+
{% assign items = collections.v2 | reverse %}
15+
{% for item in items %}
16+
1. [{{ item.data.title }}]({{ item.url }}) ({{ item.date | date: '%Y-%m-%d' }})
17+
{% endfor %}
18+
{% endif %}

src/writing/2016-04-12---of-the-web/index.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
title: Of the Web
33
permalink: /writing/of-the-web/
44
date: 2016-04-12T14:01:34Z
5+
tags:
6+
- dev
7+
- site
8+
- v1
59
layout: layouts/base
610
---
711

src/writing/2016-04-16---everything-i-did-to-make-this-site-accessible/index.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
title: Everything I Did to Make This Site Accessible
33
permalink: /writing/everything-i-did-to-make-this-site-accessible/
44
date: 2016-04-16T04:54:54Z
5+
tags:
6+
- dev
7+
- site
8+
- v1
59
layout: layouts/base
610
---
711

src/writing/2016-04-30---everything-i-did-to-make-this-site-fast-part-1/index.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
title: Everything I Did to Make This Site Fast, Part 1
33
permalink: /writing/everything-i-did-to-make-this-site-fast-part-1/
44
date: 2016-04-30T22:08:10Z
5+
tags:
6+
- dev
7+
- site
8+
- v1
59
layout: layouts/base
610
---
711

0 commit comments

Comments
 (0)