summaryrefslogtreecommitdiffstats
path: root/themes
diff options
context:
space:
mode:
authorMatthew Lemon <matt@matthewlemon.com>2022-08-23 09:33:28 +0100
committerMatthew Lemon <matt@matthewlemon.com>2022-08-23 09:33:28 +0100
commitda73efa58e47048976a0172b4c022e9b3defb763 (patch)
tree00f3442dc666b7ad1a9fce9726aca115b815d11f /themes
parent3a9dbadab6459ef1005a33c50d9cc83fed5ef452 (diff)
update
Diffstat (limited to 'themes')
-rw-r--r--themes/problematic/layouts/partials/reading.html18
1 files changed, 16 insertions, 2 deletions
diff --git a/themes/problematic/layouts/partials/reading.html b/themes/problematic/layouts/partials/reading.html
index efc7cee..287d05f 100644
--- a/themes/problematic/layouts/partials/reading.html
+++ b/themes/problematic/layouts/partials/reading.html
@@ -1,12 +1,26 @@
+
+<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 site.RegularPages "Section" "reading" }}
+ {{ range where (where site.RegularPages "Section" "reading") "Params.daily_read" true }}
<li>
<a href="{{ .Permalink }}">{{ .Title }}</a>
- {{ .Summary }}
+ : {{ .Summary }}
</li>
{{ end }}
</ul>
+