You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Updated Hugo version to 0.152.2 across all Netlify deployment contexts
- Replaced deprecated .Site.RSSLink with .OutputFormats.Get "RSS"
- Updated pagination config from paginate to pagination.pagerSize
- Fixed deprecated config parameters for Hugo v0.128+ compatibility
- Maintained all existing functionality and design
- Verified successful build with 69 pages generated
Copy file name to clipboardExpand all lines: layouts/partials/nav.html
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -60,7 +60,7 @@
60
60
{{ end }}
61
61
62
62
{{ if .Site.Params.enableRSS }}
63
-
<aclass="cta" href="{{ .Site.RSSLink }}">{{ with .Site.Params.subscribe }}{{ . }}{{ else }}Subscribe{{ end }}</a>
63
+
{{ with .OutputFormats.Get "RSS" }}<aclass="cta" href="{{ .Permalink }}">{{ with $.Site.Params.subscribe }}{{ . }}{{ else }}Subscribe{{ end }}</a>{{ end }}
Copy file name to clipboardExpand all lines: themes/cactus-plus/layouts/partials/nav.html
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,6 @@
12
12
{{ end }}
13
13
14
14
{{ if .Site.Params.enableRSS }}
15
-
<aclass="cta" href="{{ .Site.RSSLink }}">{{ with .Site.Params.subscribe }}{{ . }}{{ else }}Subscribe{{ end }}</a>
15
+
{{ with .OutputFormats.Get "RSS" }}<aclass="cta" href="{{ .Permalink }}">{{ with $.Site.Params.subscribe }}{{ . }}{{ else }}Subscribe{{ end }}</a>{{ end }}
0 commit comments