this repo has no description

fix: update Zola and fix caret placement in blockquotes

hauleth.dev 4fa2f59a fc75dfb3

verified
Changed files
+13 -9
sass
templates
+1 -1
config.toml
···
theme = "zerm"
-
generate_feed = true
minify_html = true
taxonomies = [
···
theme = "zerm"
+
generate_feeds = true
minify_html = true
taxonomies = [
+7 -7
flake.lock
···
"systems": "systems"
},
"locked": {
-
"lastModified": 1705309234,
-
"narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=",
"owner": "numtide",
"repo": "flake-utils",
-
"rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26",
"type": "github"
},
"original": {
···
},
"nixpkgs": {
"locked": {
-
"lastModified": 1704842529,
-
"narHash": "sha256-OTeQA+F8d/Evad33JMfuXC89VMetQbsU4qcaePchGr4=",
-
"path": "/nix/store/g16z4fs1mrbkxc4x6wm8xbrh13nc7aw4-source",
-
"rev": "eabe8d3eface69f5bb16c18f8662a702f50c20d5",
"type": "path"
},
"original": {
···
"systems": "systems"
},
"locked": {
+
"lastModified": 1710146030,
+
"narHash": "sha256-SZ5L6eA7HJ/nmkzGG7/ISclqe6oZdOZTNoesiInkXPQ=",
"owner": "numtide",
"repo": "flake-utils",
+
"rev": "b1d9ab70662946ef0850d488da1c9019f3a9752a",
"type": "github"
},
"original": {
···
},
"nixpkgs": {
"locked": {
+
"lastModified": 1725194671,
+
"narHash": "sha256-tLGCFEFTB5TaOKkpfw3iYT9dnk4awTP/q4w+ROpMfuw=",
+
"path": "/nix/store/9qq0zf30wi74pz66rr05zmxq0nv17q1p-source",
+
"rev": "b833ff01a0d694b910daca6e2ff4a3f26dee478c",
"type": "path"
},
"original": {
+3
netlify.toml
···
command = "zola build"
publish = "public/"
[context.deploy-preview]
command = "zola build --drafts --base-url $DEPLOY_PRIME_URL"
···
command = "zola build"
publish = "public/"
+
[build.environment]
+
ZOLA_VERSION = "0.19.2"
+
[context.deploy-preview]
command = "zola build --drafts --base-url $DEPLOY_PRIME_URL"
+1
sass/_main.scss
···
display: block;
position: absolute;
left: -25px;
color: var(--accent);
}
}
···
display: block;
position: absolute;
left: -25px;
+
top: .1em;
color: var(--accent);
}
}
+1 -1
templates/index.html
···
{% block rss %}
{%- if config.generate_feed -%}
-
<link rel="alternate" type="application/atom+xml" title="{{ config.title }} Feed" href="{{ get_url(path=config.feed_filename) | safe}}">
{%- endif -%}
{% endblock rss %}
···
{% block rss %}
{%- if config.generate_feed -%}
+
<link rel="alternate" type="application/atom+xml" title="{{ config.title }} Feed" href="{{ get_url(path="atom.xml", trailing_slash=false) }}">
{%- endif -%}
{% endblock rss %}