Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dewittn/hugo-html5up-alpha.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNelson/Roberto <dewittn@gmail.com>2020-05-23 17:13:11 +0300
committerNelson/Roberto <dewittn@gmail.com>2020-05-23 17:13:11 +0300
commit6d08d1109a24b1a48f84bc1d6abc539dd585eae6 (patch)
tree22bbff9c1dbd26b27f62c3b5793eb5022e7c5fe1 /layouts
parent12af5ba56f4e43efdde4d919032be14f0edc5f37 (diff)
More tweaks to get theme working with hugoBasicTheme and hugoThemes.
Diffstat (limited to 'layouts')
-rw-r--r--layouts/index.html18
1 files changed, 9 insertions, 9 deletions
diff --git a/layouts/index.html b/layouts/index.html
index f414def..7e07280 100644
--- a/layouts/index.html
+++ b/layouts/index.html
@@ -7,13 +7,13 @@
<body class="landing is-preload">
<div id="page-wrapper">
{{- partial "header.html" . -}}
-
+
<!-- Banner -->
<section id="banner">
{{ if .Site.Data.homepage.banner.enable }}
{{ with .Site.Data.homepage.banner }}
<h2>{{ .title }}</h2>
- <p>{{ .content }}</p>
+ <p>{{ with .content }}{{ . }}{{else}}{{ $.Site.Params.description }}{{end}}</p>
<ul class="actions special">
{{ range .buttons }}
<li><a href="{{ .link }}" class="button {{ .class }}">{{ .title }}</a></li>
@@ -22,7 +22,7 @@
{{ end }}
{{ end }}
</section>
-
+
<!-- Main -->
<section id="main" class="container">
<!-- Highlight -->
@@ -38,8 +38,8 @@
</section>
{{ end }}
{{ end }}
-
- <!-- Features -->
+
+ <!-- Features -->
{{ if .Site.Data.homepage.features.enable }}
{{ with .Site.Data.homepage.features }}
<section class="box special features">
@@ -57,11 +57,11 @@
</section>
{{ end }}
{{ end }}
-
+
<!-- Posts -->
{{ if .Site.Data.homepage.blog.enable }}
{{ with $blogSettings := .Site.Data.homepage.blog }}
- {{ with .header }}
+ {{ with .header }}
<header class="major">
<h2>{{ . }}</h2>
</header>
@@ -90,7 +90,7 @@
{{ end }}
{{ end }}
</section>
-
+
<!-- CTA -->
{{ if .Site.Data.homepage.cta.enable }}
{{ with .Site.Data.homepage.cta}}
@@ -110,7 +110,7 @@
</section>
{{ end }}
{{ end }}
-
+
{{- partial "footer.html" . -}}
</div>
{{- partial "scripts.html" . -}}