commit 11a707ce288612383b0293e38dfbcaec6f77e46c parent f2ef08c3c0224b417f1b2c7730c957791e580ee0 Author: David Eisinger <[email protected]> Date: Mon, 15 May 2023 12:37:25 -0400 Order notes rev. chron. by update Diffstat:
| M | content/notes/golang/index.md | | | 1 | + |
| M | themes/v2/layouts/notes/list.html | | | 2 | +- |
2 files changed, 2 insertions(+), 1 deletion(-)
diff --git a/content/notes/golang/index.md b/content/notes/golang/index.md @@ -20,6 +20,7 @@ I find [Go][1] really compelling, even though it's not super applicable to my jo * How to read/write JSON * How to validate with JSON Schema * <https://github.com/qri-io/jsonschema> +* Testing ### Projects I like diff --git a/themes/v2/layouts/notes/list.html b/themes/v2/layouts/notes/list.html @@ -5,7 +5,7 @@ <h3>Notes</h3> <ul> - {{ range (where .Site.RegularPages "Type" "in" "notes") }} + {{ range (where .Site.RegularPages.ByLastmod.Reverse "Type" "in" "notes") }} <li> <a href="{{ .Permalink }}">{{ .Title }}</a> </li>