diff options
-rw-r--r-- | content/about/index.md | 2 | ||||
-rw-r--r-- | content/blog/_index.md | 4 | ||||
-rw-r--r-- | content/categories/_index.md | 3 | ||||
-rw-r--r-- | content/reading/_index.md | 4 | ||||
-rw-r--r-- | content/stream/_index.md | 4 | ||||
-rw-r--r-- | content/tags/_index.md | 4 | ||||
-rw-r--r-- | layouts/blog/list.html | 1 | ||||
-rw-r--r-- | layouts/categories/list.html | 2 | ||||
-rw-r--r-- | layouts/partials/head.html | 1 | ||||
-rw-r--r-- | layouts/reading/list.html | 1 | ||||
-rw-r--r-- | layouts/tags/list.html | 1 | ||||
-rw-r--r-- | static/css/style.css | 4 | ||||
-rw-r--r-- | themes/problematic/layouts/partials/posts.html | 4 |
13 files changed, 25 insertions, 10 deletions
diff --git a/content/about/index.md b/content/about/index.md index b14f705..d87b495 100644 --- a/content/about/index.md +++ b/content/about/index.md @@ -1,5 +1,5 @@ --- -title: "About this site" +title: "Yulqen - About this site" date: 2021-05-17T19:45:46+01:00 draft: false slug: "about" diff --git a/content/blog/_index.md b/content/blog/_index.md index bbf409a..2948026 100644 --- a/content/blog/_index.md +++ b/content/blog/_index.md @@ -1,3 +1,7 @@ +--- +title: 'Yulqen - Blog' +--- + [RSS feed](index.xml) These short and pithy entries into the annals of the internet cannot be missed. There are a few subjects that mean something (cats, plaintext) and some that mean nothing. diff --git a/content/categories/_index.md b/content/categories/_index.md new file mode 100644 index 0000000..d7bbc92 --- /dev/null +++ b/content/categories/_index.md @@ -0,0 +1,3 @@ +--- +title: 'Yulqen - Blog Categories' +--- diff --git a/content/reading/_index.md b/content/reading/_index.md index b5accd5..3ffb94b 100644 --- a/content/reading/_index.md +++ b/content/reading/_index.md @@ -1,4 +1,6 @@ -## Reading +--- +title: Yulqen - Reading +--- I read a lot on the internet and would like to read more on paper, like the old days. My attention span is too feeble to sit down to read a book at this point, but I'm working on it. diff --git a/content/stream/_index.md b/content/stream/_index.md index 781b8e1..e20bc93 100644 --- a/content/stream/_index.md +++ b/content/stream/_index.md @@ -1,3 +1,7 @@ +--- +title: 'Yulqen - Stream' +--- + [RSS feed](index.xml) *Short temporal updates. Antisocial.* diff --git a/content/tags/_index.md b/content/tags/_index.md index eb0c96a..f05d9c8 100644 --- a/content/tags/_index.md +++ b/content/tags/_index.md @@ -1 +1,5 @@ +--- +title: 'Yulqen - Tags' +--- + [Stream](/stream) pages can also receive tags. diff --git a/layouts/blog/list.html b/layouts/blog/list.html index 751674b..a2b53d4 100644 --- a/layouts/blog/list.html +++ b/layouts/blog/list.html @@ -1,5 +1,4 @@ {{ define "main" }} -<h2>{{ with .Site.GetPage "section" "blog" }}{{ .Title }}{{ end }}</h2> {{ .Content }} diff --git a/layouts/categories/list.html b/layouts/categories/list.html index 8336025..7dc9d4b 100644 --- a/layouts/categories/list.html +++ b/layouts/categories/list.html @@ -2,7 +2,7 @@ <main> <div> - <h2>{{ .Title }}</h2> + <h3>Blog categories</h3> <ul> {{ range .Pages.ByTitle }} <li><a href="{{ .Permalink }}">{{ .Title }}</a></li> diff --git a/layouts/partials/head.html b/layouts/partials/head.html index da8f4c4..4c5d49c 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -12,6 +12,5 @@ {{ range .Site.Params.custom_css -}} <link rel="stylesheet" href="{{ . | absURL }}" type="text/css" media="screen"> {{- end}} - <title>{{ .Title }}</title> </head> diff --git a/layouts/reading/list.html b/layouts/reading/list.html index 002c5a3..55183ee 100644 --- a/layouts/reading/list.html +++ b/layouts/reading/list.html @@ -1,5 +1,4 @@ {{ define "main" }} -<h3>{{ with .Site.GetPage "section" "reading" }}{{ .Title }}{{ end }}</h3> {{ .Content }} diff --git a/layouts/tags/list.html b/layouts/tags/list.html index 90627d4..38c3b6b 100644 --- a/layouts/tags/list.html +++ b/layouts/tags/list.html @@ -2,7 +2,6 @@ <main> <div> - <h2>{{ .Title }}</h2> {{ .Content }} <ul> {{ range .Pages.ByTitle }} diff --git a/static/css/style.css b/static/css/style.css index 0036122..6e38eca 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -10,6 +10,10 @@ nav { margin-bottom: 2em; } +hr { + border: 1px solid #e2e2e2; +} + hr.new1 { border: 1px solid #e2e2e2; } diff --git a/themes/problematic/layouts/partials/posts.html b/themes/problematic/layouts/partials/posts.html index b1c8c82..74f0fe6 100644 --- a/themes/problematic/layouts/partials/posts.html +++ b/themes/problematic/layouts/partials/posts.html @@ -1,11 +1,9 @@ -<h2>Blog Posts</h2> - +<hr class="new1"> {{ range $key, $value := .Site.Taxonomies.categories }} <h3>{{ $key | title }}</h3> <ul> - {{ range where (where site.RegularPages "Section" "blog") ".Params.categories" "intersect" (slice ($key |title)) }} <li><a href="{{ .Permalink }}">{{ .Title }}</a> ({{ .Date.Format "2 Jan 06" }})</li> |