2023-08-12 08:53:24 -07:00
|
|
|
{{ $level := (default .headingLevel 2) }}
|
|
|
|
|
|
|
|
{{ $headingClass := "" }}
|
2021-04-20 00:37:26 -07:00
|
|
|
{{ if eq .small_title "true" }}
|
2023-08-12 08:53:24 -07:00
|
|
|
{{ $headingClass = "small-title" }}
|
2021-04-20 00:37:26 -07:00
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
<header class="page-hero">
|
|
|
|
<div class="dot-background-container">
|
|
|
|
<div class="dot-background"></div>
|
|
|
|
</div>
|
|
|
|
<div class="dot-overlay"></div>
|
|
|
|
<div class="page-hero-title">
|
2023-08-12 08:53:24 -07:00
|
|
|
<h{{ $level }} class="{{ $headingClass }}">
|
2022-06-01 10:58:20 -07:00
|
|
|
<span><span class="rainbow-text" data-text="{{ .title }}">{{ .title }}</span></span>
|
2023-08-12 08:53:24 -07:00
|
|
|
</h{{ $level }}>
|
2023-08-22 07:41:50 -07:00
|
|
|
{{ if .subtitle }}
|
|
|
|
<p class="text-2xl">{{ .subtitle }}</p>
|
|
|
|
{{ end }}
|
2021-04-20 00:37:26 -07:00
|
|
|
</div>
|
|
|
|
</header>
|