diff --git a/content/ally/027.md b/content/ally/027.md index e69de29..9612ae6 100644 --- a/content/ally/027.md +++ b/content/ally/027.md @@ -0,0 +1,3 @@ +--- +date: 2019-09-24 +--- diff --git a/content/chronological/_index.md b/content/chronological/_index.md new file mode 100644 index 0000000..cfe9ca5 --- /dev/null +++ b/content/chronological/_index.md @@ -0,0 +1,3 @@ +--- +type: chronological +--- diff --git a/content/koan/01.md b/content/koan/01.md index 8f82b9d..c8b5bd4 100644 --- a/content/koan/01.md +++ b/content/koan/01.md @@ -1,5 +1,5 @@ --- -date: 2017-10-19 +date: 2019-08-14 weight: 1 --- diff --git a/content/koan/02.md b/content/koan/02.md index ba424f4..84caa2e 100644 --- a/content/koan/02.md +++ b/content/koan/02.md @@ -1,5 +1,5 @@ --- -date: 2017-10-19 +date: 2019-08-14 weight: 2 --- diff --git a/content/koan/03.md b/content/koan/03.md index a08caff..9dcaa17 100644 --- a/content/koan/03.md +++ b/content/koan/03.md @@ -1,5 +1,5 @@ --- -date: 2017-10-19 +date: 2019-08-14 weight: 3 --- diff --git a/content/koan/04.md b/content/koan/04.md index b800a80..ea03eed 100644 --- a/content/koan/04.md +++ b/content/koan/04.md @@ -1,5 +1,5 @@ --- -date: 2017-10-19 +date: 2019-08-14 weight: 4 --- diff --git a/content/koan/05.md b/content/koan/05.md index 6e05106..ca44a50 100644 --- a/content/koan/05.md +++ b/content/koan/05.md @@ -1,5 +1,5 @@ --- -date: 2017-10-19 +date: 2019-08-14 weight: 5 --- diff --git a/content/manifesto-project/007.md b/content/manifesto-project/007.md index b232908..7d081fa 100644 --- a/content/manifesto-project/007.md +++ b/content/manifesto-project/007.md @@ -1,5 +1,5 @@ --- -date: 2019-08-09 +date: 2019-08-28 weight: 7 --- diff --git a/content/news/2019-09-24-coping-mechanisms.md b/content/news/2019-09-24-coping-mechanisms.md index bbbed3d..7591ff3 100644 --- a/content/news/2019-09-24-coping-mechanisms.md +++ b/content/news/2019-09-24-coping-mechanisms.md @@ -22,6 +22,7 @@ Fair enough. * [ally 25](/25) through 27 * [Polyamory 4](/poly/4) through 6 * [Sex](/sex) +* You can now view content posted [chronologically](/chronological) ### Updated content diff --git a/content/poly/02.md b/content/poly/02.md index cda7a01..0c6302b 100644 --- a/content/poly/02.md +++ b/content/poly/02.md @@ -1,5 +1,5 @@ --- -date: 2018-08-13 +date: 2019-08-13 weight: 2 tags: - snarky diff --git a/themes/ally/layouts/chronological/list.html b/themes/ally/layouts/chronological/list.html new file mode 100644 index 0000000..e9de480 --- /dev/null +++ b/themes/ally/layouts/chronological/list.html @@ -0,0 +1,11 @@ +{{ define "main" }} +
+ {{ .Content }} + {{ $paginator := .Paginate (where (where .Site.RegularPages ".Type" "!=" "news") ".Date.Year" ">=" 2019).ByPublishDate 1 }} + {{ range $paginator.Pages.ByPublishDate }} +

{{ .Date.Format "January 2, 2006" }}

+ {{ .Content }} + {{ end }} + {{ partial "pagination.html" . }} +
+{{end}}