gmgsite/themes/hugo-casper3/layouts/index.html

43 lines
2.1 KiB
HTML

{{ define "body_class" }} home-template {{ end }}
{{ define "main" }}
<header class="site-home-header">
{{ .Scratch.Set "background" .Params.feature_image }}
{{- partial "header-background.html" . -}}
<div class="inner">
{{- partial "site-nav.html" . -}}
<div class="site-header-content">
<h1 class="site-title fadein">
{{ if $.Site.Params.logo }}
<img class="site-logo" src="{{ $.Site.Params.logo }}" alt="{{ .Site.Title }}" />
{{ else }}
Hi, I'm <font color="#EB4034">{{ $.Site.Title }}</font>.
{{ end }}
</h1>
<h2 class="site-description fadein">I'm an <font color="#EB4034">artist</font>, <font color="#0171FF">designer</font>, <font color="#03B000">photographer</font> and <font color="#FFB002">libre advocate</font>.</h2>
<!-- This is the old way of getting the description, I had to hardcode it in order to apply color. -->
<!-- <h2 class="site-description">{{ $.Site.Params.description }}</h2> -->
</div>
</div>
</div>
</header>
<main id="site-main" class="site-main outer">
<div class="inner posts">
<div class="post-feed">
<!--<div id="banner">
<span>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</span>
</div>-->
{{ $pages := site.RegularPages }}
{{ range $index, $element := $pages }}{{ if ne .Params.rss_ignore true }}
{{- partial "post-card.html" (dict "context" . "index" $index "home" $.IsHome) -}}
{{ end }}{{ end }}
</div>
</div>
</main>
{{ end }}