hugo-scroll/layouts/index.html

49 lines
1.5 KiB
HTML
Raw Normal View History

2020-07-07 08:37:57 +00:00
{{ define "main" }}
2020-09-11 16:28:34 +00:00
{{ $headless := .Site.GetPage "/homepage" }}
{{ $sections := $headless.Resources.ByType "page" }}
<header
id="site-head"
{{ with .Params.header_image }}style="background-image: url({{ . }})"
2020-09-11 16:29:46 +00:00
<!--BPGTBPGT30EPGTEPGT--
2020-09-11 16:28:34 +00:00
>
2020-09-11 16:29:46 +00:00
>
2020-07-07 08:37:57 +00:00
<div class="vertical">
2020-09-11 16:28:34 +00:00
<div id="site-head-content" class="inner">
{{ with .Params.header_headline }}
<h1 class="blog-title">{{ . }}</h1>{{ end }}
2020-07-07 08:37:57 +00:00
2020-09-11 16:29:46 +00:00
2020-09-11 16:28:34 +00:00
{{ with .Params.header_subheadline }}
<h2 class="blog-description">{{ . }}</h2>{{ end }}
2020-07-07 08:37:57 +00:00
2020-09-11 16:28:34 +00:00
{{ range where $sections ".Params.header_menu" "eq" true }}
<a class="btn site-menu" data-title-anchor="{{ anchorize .Title }}"
>{{ .Title }}</a
>
{{ end }}
<i id="header-arrow" class="fa fa-angle-down"></i>
</div>
2020-07-07 08:37:57 +00:00
</div>
2020-09-11 16:28:34 +00:00
</header>
<main class="content" role="main">
<div class="fixed-nav"></div>
2020-07-07 08:37:57 +00:00
{{ range $index_val, $elem_val := $sections }}
2020-09-11 16:28:34 +00:00
<div class="post-holder">
<article
id="{{ anchorize .Title }}"
class="post {{ if eq $index_val 0 }}first{{ else }}{{ if eq (add $index_val 1) (len $sections) }}last{{ end }}{{ end }}"
>
<header class="post-header">
<h2 class="post-title">{{ .Title }}</h2>
</header>
<section class="post-content">
{{ .Content }}
</section>
</article>
<div class="post-after"></div>
</div>
2020-07-07 08:37:57 +00:00
{{ end }}
2020-09-11 16:28:34 +00:00
</main>
2020-07-07 08:37:57 +00:00
{{ end }}