Bumped to latest zona version

This commit is contained in:
Daniel Fichtinger 2025-07-03 02:21:24 -04:00
parent 28c1aa1da6
commit 58d68b4639
4 changed files with 24 additions and 15 deletions

View file

@ -9,7 +9,7 @@ tasks:
- build: | - build: |
if [ "$GIT_REF" = "refs/heads/main" ]; then if [ "$GIT_REF" = "refs/heads/main" ]; then
cd ficd-zona 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 else
echo "Skipping build: not on main" echo "Skipping build: not on main"
fi fi

View file

@ -1,6 +1,4 @@
title: Daniel Fichtinger base_url: /
base_url: https://ficd.ca
language: en
sitemap: sitemap:
Home: / Home: /
Blog: /blog Blog: /blog
@ -9,17 +7,12 @@ sitemap:
ignore: ignore:
- .git - .git
- .env - .env
- '*/.marksman.toml' - "*/.marksman.toml"
markdown: markdown:
image_labels: true image_labels: true
syntax_highlighting: syntax_highlighting:
enabled: true enabled: true
theme: ashen theme: ashen
wrap: false wrap: false
theme:
name: default
build:
clean_output_dir: true
include_drafts: false
blog: blog:
dir: blog dir: blog

View file

@ -141,13 +141,21 @@ pre {
overflow-x: auto; overflow-x: auto;
} }
code { /* Inline code styling */
background-color: #1d1d1d; :not(pre) > code {
color: #d5d5d5;
padding: 0.2em 0.4em; padding: 0.2em 0.4em;
border-radius: 3px; 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 { small {
font-size: 0.95rem; font-size: 0.95rem;
@ -234,3 +242,5 @@ small a {
color: var(--main-small-text-color); color: var(--main-small-text-color);
} }

View file

@ -10,6 +10,12 @@
type="text/css" type="text/css"
media="all" media="all"
/> />
<link
href="/static/pygments.css"
rel="stylesheet"
type="text/css"
media="all"
/>
</head> </head>
<body> <body>
<div id="container"> <div id="container">