From 531c82359c93f81e40ec2aa6d77b8e0dbd8d4c9e Mon Sep 17 00:00:00 2001 From: Hunter Kvalevog Date: Tue, 23 Jun 2026 20:07:59 -0500 Subject: --- content/notes/ffmpeg.md | 2 +- themes/kvog/assets/css/main.css | 8 +++++++- themes/kvog/layouts/_partials/header.html | 2 ++ themes/kvog/layouts/section.html | 24 ++++++++++++++++-------- 4 files changed, 26 insertions(+), 10 deletions(-) diff --git a/content/notes/ffmpeg.md b/content/notes/ffmpeg.md index afc47e4..cdd950c 100644 --- a/content/notes/ffmpeg.md +++ b/content/notes/ffmpeg.md @@ -1,6 +1,6 @@ +++ date = '2026-06-17T17:50:30-05:00' -title = 'FFmpeg' +title = 'ffmpeg' +++ ## Websites diff --git a/themes/kvog/assets/css/main.css b/themes/kvog/assets/css/main.css index 11744b1..e0bb58c 100644 --- a/themes/kvog/assets/css/main.css +++ b/themes/kvog/assets/css/main.css @@ -4,7 +4,8 @@ body { color: #222; font-family: sans-serif; - line-height: 1.5; + font-family: Arial, sans-serif; + font-size: 13px; margin: 1rem; max-width: 1024px; } @@ -13,3 +14,8 @@ a { color: #00e; text-decoration: none; } + +summary { + cursor: pointer; +} + diff --git a/themes/kvog/layouts/_partials/header.html b/themes/kvog/layouts/_partials/header.html index 7980a00..0d3b144 100644 --- a/themes/kvog/layouts/_partials/header.html +++ b/themes/kvog/layouts/_partials/header.html @@ -1,2 +1,4 @@ +{{ if .IsHome }}

{{ site.Title }}

+{{ end }} {{ partial "menu.html" (dict "menuID" "main" "page" .) }} diff --git a/themes/kvog/layouts/section.html b/themes/kvog/layouts/section.html index 748f2f5..bb7ac54 100644 --- a/themes/kvog/layouts/section.html +++ b/themes/kvog/layouts/section.html @@ -1,10 +1,18 @@ {{ define "main" }} -

{{ .Title }}

- {{ .Content }} - {{ range .Pages }} -
-

{{ .LinkTitle }}

- {{ .Summary }} -
- {{ end }} + {{ .Content }} + + {{ range .Pages }} + + + + {{ end }} +
{{ .LinkTitle }}
+ {{ end }} -- cgit v1.2.3