9 lines
293 B
HTML
9 lines
293 B
HTML
{{ if .Title }}
|
|
{{ $class := "display-5" }}
|
|
{{ if .IsHome }}
|
|
{{ $class = "display-1" }}
|
|
{{ end }}
|
|
{{ $title := .Title | markdownify }}
|
|
<h1 class="{{ $class }} fw-bold text-center">{{ if .Params.link }}<a href="{{ .Params.link }}">{{ $title }}</a>{{ else }}{{ $title }}{{ end }}</h1>
|
|
{{ end }}
|