diff options
author | Oscar Najera <hi@oscarnajera.com> | 2023-10-16 00:11:31 +0200 |
---|---|---|
committer | Oscar Najera <hi@oscarnajera.com> | 2023-10-16 00:15:29 +0200 |
commit | 30b5defb5896f54f986af0efacce5e17d6e29597 (patch) | |
tree | 243d56b5b7bc611216b0e2a8fb3eb8876a5f528e /layouts/index.html | |
parent | c23c5f93cde9f98534f2d89e46739a3d35b6239a (diff) | |
download | hugo-minimalist-theme-30b5defb5896f54f986af0efacce5e17d6e29597.tar.gz hugo-minimalist-theme-30b5defb5896f54f986af0efacce5e17d6e29597.tar.bz2 hugo-minimalist-theme-30b5defb5896f54f986af0efacce5e17d6e29597.zip |
Anchors on headings
Diffstat (limited to 'layouts/index.html')
-rw-r--r-- | layouts/index.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/layouts/index.html b/layouts/index.html index f787152..021da39 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -9,7 +9,10 @@ {{ range $index, $element := (where .Pages "Type" "in" .Site.Params.mainSections).ByWeight }} <div class="stripe-dark"> <div class="mw7 center pv2"> - <h2 class="athelas lh-title f2"> + <h2 + id="{{ anchorize .Title | safeURL }}" + class="baskerville lh-title f2" + > {{ .Title }} </h2> {{ range first 3 .Pages.ByPublishDate.Reverse }} |