mirror of
https://github.com/nikdoof/website-hugo.git
synced 2025-12-14 13:52:17 +00:00
36 lines
1.1 KiB
HTML
36 lines
1.1 KiB
HTML
{{ define "hero" }}
|
|
<section id="hero">
|
|
<div class="hero has-primary-gradient">
|
|
<div class="hero-body">
|
|
<div class="container">
|
|
|
|
<div class="columns is-centered ">
|
|
<div class="column is-four-fifths">
|
|
<div class="columns is-vcentered has-text-centered-mobile">
|
|
|
|
<div class="column is-half">
|
|
<h1 class="title is-1 has-text-white">{{ .Title }}</h1>
|
|
<p class="subtitle has-text-white">{{ .Params.subtitle }}</p>
|
|
</div>
|
|
|
|
<div class="column">
|
|
<img class="hero-img" src="/images/hero-img.svg"
|
|
onerror="this.onerror=null; this.src= '/user/themes/leighhack/images/hero-img@2x.png'">
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
{{ end }}
|
|
|
|
{{ define "content" }}
|
|
{{ .Content }}
|
|
{{ end }}
|
|
|
|
{{ define "cta" }}
|
|
<p></p>
|
|
{{ end }} |