diff options
-rw-r--r-- | CHANGELOG.md | 14 | ||||
-rw-r--r-- | assets/static/css/style.css (renamed from assets/style.css) | 0 | ||||
-rw-r--r-- | layouts/partials/head.html | 2 |
3 files changed, 15 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 498ca53..59bde79 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [1.6.3] - 2024-11-25 + +### Changed + +- Move css stylesheet to subdirectory + +## [1.6.2] - 2024-11-23 + +### Changed + +- Improve conversion of ref numbers to superscripts + ## [1.6.1] - 2024-11-08 ### Fixed @@ -488,6 +500,8 @@ _First release._ +[1.6.3]: https://git.nicholasjohnson.ch/hugo-theme-journal/tag/?h=v1.6.3 +[1.6.2]: https://git.nicholasjohnson.ch/hugo-theme-journal/tag/?h=v1.6.2 [1.6.1]: https://git.nicholasjohnson.ch/hugo-theme-journal/tag/?h=v1.6.1 [1.6.0]: https://git.nicholasjohnson.ch/hugo-theme-journal/tag/?h=v1.6.0 [1.5.0]: https://git.nicholasjohnson.ch/hugo-theme-journal/tag/?h=v1.5.0 diff --git a/assets/style.css b/assets/static/css/style.css index 81ea8bd..81ea8bd 100644 --- a/assets/style.css +++ b/assets/static/css/style.css diff --git a/layouts/partials/head.html b/layouts/partials/head.html index 8132ec8..8250e19 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -13,7 +13,7 @@ <link rel="stylesheet" type="text/css" href="{{ relURL . }}"> {{- end -}} {{ else }} - <link rel="stylesheet" type="text/css" href="{{ (resources.Get "style.css").RelPermalink }}"> + <link rel="stylesheet" type="text/css" href="{{ (resources.Get "static/css/style.css").RelPermalink }}"> {{- end -}} {{ if (not (fileExists "static/favicon.ico")) }} <link rel="icon" href="data:,"> |