diff options
author | Oscar Najera <hi@oscarnajera.com> | 2025-01-06 01:05:02 +0100 |
---|---|---|
committer | Oscar Najera <hi@oscarnajera.com> | 2025-01-06 01:05:02 +0100 |
commit | dee863b5e0812f95db4caf367983864a74b63ccc (patch) | |
tree | c15dcc000480946a10fec56987d6ee68f34b7e3f /layouts/404.html | |
parent | 4b76a856b2841fb197acc982ed168bc52db6ea3d (diff) | |
download | hugo-minimalist-theme-dee863b5e0812f95db4caf367983864a74b63ccc.tar.gz hugo-minimalist-theme-dee863b5e0812f95db4caf367983864a74b63ccc.tar.bz2 hugo-minimalist-theme-dee863b5e0812f95db4caf367983864a74b63ccc.zip |
translate posts listing
Diffstat (limited to 'layouts/404.html')
-rw-r--r-- | layouts/404.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/layouts/404.html b/layouts/404.html index 0e11279..2d722bb 100644 --- a/layouts/404.html +++ b/layouts/404.html @@ -10,7 +10,7 @@ {{ $query := where (where (where (where site.RegularPages.ByDate.Reverse "Title" "!=" "") "Kind" "in" (slice "page" "section")) "Params.private" "!=" true) "Permalink" "!=" "" }} {{ $count := len $query }} {{ if gt $count 0 }} - <h3 class="lh-title f3 baskerville">{{ T "recent_pages" }}</h3> + <h3 class="lh-title text-2xl baskerville">{{ T "recent_pages" }}</h3> <ul class="list"> {{ range first 10 $query }} <li class="lh-copy grow stripe-dark p-2"> @@ -31,7 +31,7 @@ </ul> {{ end }} <a href="/search" class="color-inherit dim"> - <h3 class="lh-title f3 baskerville"> + <h3 class="lh-title text-2xl baskerville"> <i class="fas fa-magnifying-glass"></i> {{ T "try_search" }} </h3> |