diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..6e65c79 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,15 @@ +# 1.1.0 + +- Major improvements to default stylesheet. +- Frontmatter option to ignore file. +- Improvements to title and date rendering in templates. +- Added smooth scrolling to default stylesheet. +- Fixed a crash when user templates directory was missing when starting the + server. +- Added "next/previous" navigation buttons to posts. +- User template directory is now merged with defaults instead of it being one or + the other. + +# 1.0.0 + +Initial release! diff --git a/pyproject.toml b/pyproject.toml index ae54eac..a66fa54 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "zona" -version = "1.0.0" +version = "1.1.0" description = "Opinionated static site generator." license = "BSD-3-Clause " license-files = ["LICENSE"] diff --git a/src/zona/data/templates/post_nav.html b/src/zona/data/templates/post_nav.html index 324f110..86ac330 100644 --- a/src/zona/data/templates/post_nav.html +++ b/src/zona/data/templates/post_nav.html @@ -1,9 +1,9 @@
<{% if previous %}prev{% endif %}{% if previous and next %}|{% endif %}{% if next %}next{% endif + >|{% endif %}{% if next %}next{% endif %}>
diff --git a/uv.lock b/uv.lock index 6835dac..c00e364 100644 --- a/uv.lock +++ b/uv.lock @@ -509,7 +509,7 @@ wheels = [ [[package]] name = "zona" -version = "1.0.0" +version = "1.1.0" source = { editable = "." } dependencies = [ { name = "dacite" },