diff options
author | Matthew Lemon <y@yulqen.org> | 2024-02-13 23:24:13 +0000 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-02-13 23:24:13 +0000 |
commit | d8a2382b3c50f2cbd8092f2bc54a19e697c7a08e (patch) | |
tree | 20f578679e7f8070a6880115a22cd4758ea1a5bc /themes | |
parent | b78259b6b8676079604f954a09886d8facace187 (diff) |
Swapped around some templates and added a book review about W Stevens
Diffstat (limited to 'themes')
-rw-r--r-- | themes/problematic/layouts/partials/reading.html | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/themes/problematic/layouts/partials/reading.html b/themes/problematic/layouts/partials/reading.html deleted file mode 100644 index 287d05f..0000000 --- a/themes/problematic/layouts/partials/reading.html +++ /dev/null @@ -1,26 +0,0 @@ - -<h3>Books</h3> - -Certainly not reviews, just scattered and inconsequential thoughts - when I actually read one. - -<ul id="reading"> - {{ range where site.RegularPages "Type" "reading/books" }} - <li> - <a href="{{ .Permalink }}">{{ .Title }}</a>: {{ .Summary }} - </li> - {{ end }} -</ul> - -<h3>Reading by day</h3> - -This is intended to be an ongoing log of longer-form material. Not sure if I will continue to list it by day - that might be over ambitious. - -<ul id="reading"> - {{ range where (where site.RegularPages "Section" "reading") "Params.daily_read" true }} - <li> - <a href="{{ .Permalink }}">{{ .Title }}</a> - : {{ .Summary }} - </li> - {{ end }} -</ul> - |