Skip to content

Commit cd301e2

Browse files
committed
fix: correct regression error for site's title style
1 parent 7fbeb7f commit cd301e2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

layouts/_partials/assets/section-title.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@
1919
{{- $padding := partial "utilities/GetPadding.html" -}}
2020

2121
{{/* Initialize local arguments */}}
22-
{{- $size := (or $args.heading.size site.Params.modules.bookshop.title.size) | default 4 -}}
23-
{{- $arrangement := (or $args.arrangement site.Params.modules.bookshop.title.arrangement) | default "above" -}}
24-
{{- $headingStyle := (or $args.headingStyle site.Params.modules.bookshop.title.headingStyle) | default "display" -}}
25-
{{- $contentStyle := (or $args.contentStyle site.Params.modules.bookshop.title.contentStyle) | default "lead text-muted" -}}
22+
{{- $size := (or $args.heading.size site.Params.style.title.size) | default 4 -}}
23+
{{- $arrangement := (or $args.arrangement site.Params.style.title.arrangement) | default "above" -}}
24+
{{- $headingStyle := (or $args.headingStyle site.Params.style.title.headingStyle) | default "display" -}}
25+
{{- $contentStyle := (or $args.contentStyle site.Params.style.title.contentStyle) | default "lead text-muted" -}}
2626
{{- $preheading := $args.heading.preheading }}
2727
{{- $title := $args.heading.title }}
2828
{{- $width := $args.heading.width | default 12 -}}

0 commit comments

Comments
 (0)