diff --git a/content/posts/the-slash-page-scoop/index.md b/content/posts/the-slash-page-scoop/index.md index 1d8d882..062937c 100644 --- a/content/posts/the-slash-page-scoop/index.md +++ b/content/posts/the-slash-page-scoop/index.md @@ -1,6 +1,6 @@ --- title: "The Slash Page Scoop" -date: 2024-05-30 +date: 2024-06-02 # lastmod: 2024-05-30 draft: true description: "I've added new slash pages to the site to share some background info on who I am, what I use, and how this site works." @@ -30,6 +30,8 @@ And, of course, these are collected in one place at [/slashes](/slashes). Feel free to stop here if you just want to check out the slash pages, or keep on reading for some nerd stuff about how I implemented them on my Hugo site. +--- + ### Implementation All of my typical blog posts get created within the site's Hugo directory under `content/posts/`, like this one at `content/posts/the-slash-page-scoop/index.md`. They get indexed, automatically added to the list of posts on the home page, and show up in the RSS feed. I don't want my slash pages to get that treatment so I made them directly inside the `content` directory: @@ -135,63 +137,186 @@ So instead of rendering the `description` I defined in the front matter the arch > *My collection of [slash pages](https://slashpages.net).* -While I'm at it, I'd like for the slash pages themselves to be listed in alphabetical order rather than sorted by date (like everything else on the site). The rest of my `layouts/partials/archive.html` already handles a few different ways of displaying lists of content: +While I'm at it, I'd like for the slash pages themselves to be listed in alphabetical order rather than sorted by date (like everything else on the site). The remainder of my `layouts/partials/archive.html` already handles a few different ways of displaying lists of content: ```jinja-html # torchlight! {"lineNumbers":true} -{{- if eq .Kind "taxonomy" }} - {{- if eq .Title "Tags" }} - {{/* list of all tags */}} -
- {{- range $key, $value := .Site.Taxonomies }} - {{- $slicedTags := ($value.ByCount) }} - {{- range $slicedTags }} - {{- if eq $key "tags"}} -
{{ .Name }}{{ .Count }}
- {{- end }} +{{- if and (eq .Kind "taxonomy") (eq .Title "Tags") }} + {{/* /tags/ */}} +
+ {{- range $key, $value := .Site.Taxonomies }} + {{- $slicedTags := ($value.ByCount) }} + {{- range $slicedTags }} + {{- if eq $key "tags"}} +
{{ .Name }}{{ .Count }}
{{- end }} {{- end }} -
- {{- else }} - {{/* list of all categories */}} - {{- range .Pages.ByDate.Reverse }} - {{- $postDate := .Date.Format "2006-01-02" }} - {{- $updateDate := .Lastmod.Format "2006-01-02" }} -
-
-

{{ .Title | markdownify }}

- -
-
- {{ .Description }} -
-
-
- {{ end }} {{- end }} -{{- else }} - {{/* regular posts archive */}} - {{- range (.Paginate $pages).Pages }} +
+{{- else if eq .Kind "taxonomy" }} + {{/* /categories/ */}} + {{- $sorted := sort $pages "Title" }} + {{- range $sorted }} {{- $postDate := .Date.Format "2006-01-02" }} {{- $updateDate := .Lastmod.Format "2006-01-02" }}
-

{{ .Title | markdownify }}

- +

{{ .Title | markdownify }}

+
- {{if .Description }}{{ .Description }}{{ else }}{{ .Summary }}{{ end }} + {{ .Description }}

- {{- end }} - {{- template "_internal/pagination.html" . }} + {{ end }} +{{- else }} + {{/* regular posts archive */}} + {{- range (.Paginate $pages).Pages }} + {{- $postDate := .Date.Format "2006-01-02" }} + {{- $updateDate := .Lastmod.Format "2006-01-02" }} +
+
+

{{ .Title | markdownify }}

+ +
+
+ {{if .Description }}{{ .Description }}{{ else }}{{ .Summary }}{{ end }} +
+
+
+ {{- end }} + {{- template "_internal/pagination.html" . }} {{- end }} ``` -1. The [tags](/tags/) archive (list of all tags) uses a very condensed format for displaying all the tags in one place. -2. Other archives of taxonomy pages (like the list of all [categories](/categories/)) have the +1. The [/tags/](/tags/) archive uses a condensed display format which simply shows the tag name and the number of posts with that tag. +2. Other taxonomy archives (like [/categories](/categories)) are sorted by title, displayed with a brief description, and the date that a post in the categories was published or updated. +3. Archives of posts are sorted by date (most recent first) and include the post description (or summary if it doesn't have one), and both the publish and updated dates. + +I'll just tweak the second condition there to check for either a taxonomy archive or a page with the title `/slashes`: + +```jinja-html +# torchlight! {"lineNumbers":true} +{{- if and (eq .Kind "taxonomy") (eq .Title "Tags") }} + {{/* /tags/ */}} +
+ {{- range $key, $value := .Site.Taxonomies }} + {{- $slicedTags := ($value.ByCount) }} + {{- range $slicedTags }} + {{- if eq $key "tags"}} +
{{ .Name }}{{ .Count }}
+ {{- end }} + {{- end }} + {{- end }} +
+{{- else if eq .Kind "taxonomy" }} +{{- else if or (eq .Kind "taxonomy") (eq .Title "/slashes") }} + {{/* /categories/ */}} + {{/* /categories/ or /slashes/ */}} + {{- $sorted := sort $pages "Title" }} + {{- range $sorted }} + {{- $postDate := .Date.Format "2006-01-02" }} + {{- $updateDate := .Lastmod.Format "2006-01-02" }} +
+
+

{{ .Title | markdownify }}

+ +
+
+ {{ .Description }} +
+
+
+ {{ end }} +{{- else }} + {{/* regular posts archive */}} + {{- range (.Paginate $pages).Pages }} + {{- $postDate := .Date.Format "2006-01-02" }} + {{- $updateDate := .Lastmod.Format "2006-01-02" }} +
+
+

{{ .Title | markdownify }}

+ +
+
+ {{if .Description }}{{ .Description }}{{ else }}{{ .Summary }}{{ end }} +
+
+
+ {{- end }} + {{- template "_internal/pagination.html" . }} +{{- end }} +``` + +So that's got the [/slashes](/slashes/) page looking the way I want it to. The last tweak will be to the template I use for displaying related (ie, in the same category) posts in the sidebar. The magic for that happens in `layouts/partials/aside.html`: + +```jinja-html +# torchlight! {"lineNumbers":true} +{{ if .Params.description }}

{{ .Params.description }}


{{ end }} +{{ if and (gt .WordCount 400 ) (gt (len .TableOfContents) 180) }} +

+

On this page

+ {{ .TableOfContents }} +
+

+{{ end }} + +{{ if isset .Params "categories" }} +{{$related := where .Site.RegularPages ".Params.categories" "eq" .Params.categories }} +{{- $relatedLimit := default 8 .Site.Params.numberOfRelatedPosts }} +{{ if eq .Params.categories "slashes" }} +

More /slashes

+{{ $sortedPosts := sort $related "Title" }} + +{{ else }} +

More {{ .Params.categories }}

+ +{{ end }} +
+{{ end }} + +{{- $posts := where .Site.RegularPages "Type" "in" .Site.Params.mainSections }} +{{- $featured := default 8 .Site.Params.numberOfFeaturedPosts }} +{{- $featuredPosts := first $featured (where $posts "Params.featured" true)}} +{{- with $featuredPosts }} +

Featured Posts

+ +{{- end }} +``` + +So now if you visit any of my slash pages (like, say, [/colophon](/colophon/)) you'll see the alphabetized list of other slash pages in the side bar. + +### Closing +I'll probably keep tweaking these slash pages in the coming days, but for now I'm really glad to finally have them posted. I've only thinking about doing this for the past six months. \ No newline at end of file