diff --git a/.build.yml b/.build.yml index b0923a0..6e8d373 100644 --- a/.build.yml +++ b/.build.yml @@ -9,7 +9,7 @@ tasks: - build: | if [ "$GIT_REF" = "refs/heads/main" ]; then cd ficd-zona - uv run --with 'git+https://git.sr.ht/~ficd/zona@c875adb18c281a7c28018d82bdf2cf9ac3b2433c' zona build + uv run --with 'git+https://git.sr.ht/~ficd/zona@508fba5266a5b756306fb43a08a14aa2fefd6702' zona build else echo "Skipping build: not on main" fi diff --git a/config.yml b/config.yml index 61d6850..839d0b9 100644 --- a/config.yml +++ b/config.yml @@ -1,25 +1,18 @@ -title: Daniel Fichtinger -base_url: https://ficd.ca -language: en +base_url: / sitemap: Home: / Blog: /blog Now: /now Contact: /contact ignore: -- .git -- .env -- '*/.marksman.toml' + - .git + - .env + - "*/.marksman.toml" markdown: image_labels: true syntax_highlighting: enabled: true theme: ashen wrap: false -theme: - name: default -build: - clean_output_dir: true - include_drafts: false blog: dir: blog diff --git a/content/static/style.css b/content/static/style.css index d6d538e..85a180e 100644 --- a/content/static/style.css +++ b/content/static/style.css @@ -141,13 +141,21 @@ pre { overflow-x: auto; } -code { - background-color: #1d1d1d; - color: #d5d5d5; +/* Inline code styling */ +:not(pre) > code { padding: 0.2em 0.4em; border-radius: 3px; + background-color: #1d1d1d; + color: #d5d5d5; + font-size: 0.85em; } +/* Block code styling (inherits from pre) */ +pre code { + padding: 0; + border-radius: 0; + background: none; +} small { font-size: 0.95rem; @@ -234,3 +242,5 @@ small a { color: var(--main-small-text-color); } + + diff --git a/templates/base.html b/templates/base.html index 87a8392..86769f5 100644 --- a/templates/base.html +++ b/templates/base.html @@ -10,6 +10,12 @@ type="text/css" media="all" /> +