diff options
| author | Danilo M. <danix@danix.xyz> | 2026-04-28 19:03:38 +0200 |
|---|---|---|
| committer | Danilo M. <danix@danix.xyz> | 2026-04-28 19:03:38 +0200 |
| commit | 78aec78d7c5977ee4367093b1fd6910e6c6b6cb4 (patch) | |
| tree | b570e508ecef974a3adb4578e570632cf22ac3a1 /layouts/partials/footer.html | |
| parent | 175d0fa86ae8cdb78d35e84928655b5324cbc66e (diff) | |
| download | danixxyz-theme-78aec78d7c5977ee4367093b1fd6910e6c6b6cb4.tar.gz danixxyz-theme-78aec78d7c5977ee4367093b1fd6910e6c6b6cb4.zip | |
fix: update deprecated .Site.Languages and .Site.Data APIs to site.Languages and hugo.Data
- Replace .Site.Languages with site.Languages in hamburger-menu.html and header.html
- Replace .Site.Data with hugo.Data in repository/single.html and footer.html
- Add acronym shortcode for semantic HTML abbr tags with title attributes
Diffstat (limited to 'layouts/partials/footer.html')
| -rw-r--r-- | layouts/partials/footer.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html index 1e50d6f..aec694b 100644 --- a/layouts/partials/footer.html +++ b/layouts/partials/footer.html @@ -1,4 +1,4 @@ -{{- $quotes := .Site.Data.quotes.quotes -}} +{{- $quotes := (index hugo.Data "quotes").quotes -}} <footer class="mt-16 frosted-bar border-t py-12 relative z-20"> <div class="container mx-auto px-4"> |
