make homepage button and image editable from frontmatter

This commit is contained in:
Robert Austin 2019-03-14 11:23:20 +10:00
parent 153157092d
commit 400c232f16
2 changed files with 11 additions and 4 deletions

View file

@ -1,6 +1,9 @@
--- ---
title: 'Hugo Whisper Docs' title: 'Hugo Whisper Docs'
date: 2018-11-28T15:14:39+10:00 date: 2018-11-28T15:14:39+10:00
button_link: '/docs'
button_text: 'Read The Docs'
image: '/images/terminal.gif'
--- ---
Whisper is a documentation theme built with Hugo. The design and functionality is intentionally minimal. Whisper is a documentation theme built with Hugo. The design and functionality is intentionally minimal.

View file

@ -1,7 +1,7 @@
{{ define "title" }}Hugo Whisper Theme Demo{{ end}} {{ define "title" }}Hugo Whisper Theme Demo{{ end}}
{{ define "header_css" }}{{ end }} {{ define "header_css" }}{{ end }}
{{ define "body_classes" }}page-home{{ end }} {{ define "body_classes" }}page-home{{ end }}
{{ define "header_classes" }}header-transparent{{ end }} {{ define "header_classes" }}{{ end }}
{{ define "meta_tags" }} {{ define "meta_tags" }}
<meta name="description" content="{{ .Site.Params.homepage_meta_tags.meta_description }}" /> <meta name="description" content="{{ .Site.Params.homepage_meta_tags.meta_description }}" />
@ -24,24 +24,28 @@
<div class="content"> <div class="content">
{{ .Content }} {{ .Content }}
</div> </div>
<a class="button button-primary mb-2" href="{{ "docs" | absURL }}">Read The Docs</a> <a class="button button-primary mb-2" href="{{ .Page.Params.button_link | relURL }}">
{{ .Page.Params.button_text }}
</a>
</div> </div>
</div> </div>
</div> </div>
</div> </div>
{{ if .Page.Params.image }}
<div class="strip"> <div class="strip">
<div class="container pt-4 pb-4"> <div class="container pt-4 pb-4">
<div class="row justify-content-center"> <div class="row justify-content-center">
<div class="col-12 col-md-10"> <div class="col-12 col-md-10">
<div class="terminal"> <div class="terminal">
<img src="{{ "images/terminal.gif" | absURL}}" /> <img src="{{ .Page.Params.image | absURL}}" />
</div> </div>
</div> </div>
</div> </div>
</div> </div>
</div> </div>
</div> {{ end }}
{{ end }} {{ end }}
{{ define "footer_js" }} {{ define "footer_js" }}