mirror of
https://github.com/nikdoof/website-hugo.git
synced 2025-12-13 23:52:23 +00:00
23 lines
757 B
HTML
23 lines
757 B
HTML
{{ define "hero-content" }}
|
|
<h1 class="title is-1 has-text-white">{{ .Title }}</h1>
|
|
<p class="subtitle has-text-white">{{ .Params.subtitle }}</p>
|
|
|
|
<div class="columns _is-desktop">
|
|
<div class="column is-mobile is-multiline is-fullwidth-mobile is-half-tablet">
|
|
<a class="button is-primary is-medium is-fullwidth has-box-shadow" href="/about">Learn more</a>
|
|
</div>
|
|
<div class="column is-mobile is-multiline is-fullwidth-mobile is-half-tablet">
|
|
<a class="button is-primary is-medium is-fullwidth has-box-shadow is-inverted _is-outlined"
|
|
href="/membership">Become a member</a>
|
|
</div>
|
|
|
|
</div>
|
|
{{ end }}
|
|
|
|
{{ define "content" }}
|
|
{{ .Content }}
|
|
{{ end }}
|
|
|
|
{{ define "cta" }}
|
|
{{ partial "design/bigcta.html" . }}
|
|
{{ end }} |