summaryrefslogtreecommitdiff
path: root/layouts/_default
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/_default')
-rw-r--r--layouts/_default/home.html11
-rw-r--r--layouts/_default/single.html19
2 files changed, 15 insertions, 15 deletions
diff --git a/layouts/_default/home.html b/layouts/_default/home.html
index bc3aad8..e251ce3 100644
--- a/layouts/_default/home.html
+++ b/layouts/_default/home.html
@@ -3,18 +3,17 @@
{{ .Content }}
{{/* Intro summary section */}}
-{{ if .Site.Params.homeIntro }}
+{{ if or .Site.Params.homeIntroTitle .Site.Params.homeIntroContent }}
<div class="intro">
- {{ if .Site.Params.homeIntroTitle }}
- <h1>{{ .Site.Params.homeIntroTitle }}</h1>
+ {{ with .Site.Params.homeIntroTitle }}
+ <h1>{{ . }}</h1>
{{ end }}
- {{ if .Site.Params.homeIntroContent }}
- <p>{{ .Site.Params.homeIntroContent | markdownify }}</p>
+ {{ with .Site.Params.homeIntroContent }}
+ <p>{{ . | markdownify }}</p>
{{ end }}
</div>
-
{{ end }}
{{/* Social Icons */}}
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
index 9a478f7..c0f41c5 100644
--- a/layouts/_default/single.html
+++ b/layouts/_default/single.html
@@ -2,28 +2,29 @@
{{/* Intro */}}
-<div {{ if .Param "autonumber" }} class="autonumber" {{end}}>
+<div {{ if .Param "autonumber" }} class="autonumber" {{ end }}>
<div class=" single-intro-container">
{{/* Title and Summary */}}
<h1 class="single-title">{{ .Title }}</h1>
- {{if .Param "summary" }}
- <p class="single-summary">{{ .Summary }}</p>
+ {{ with .Param "summary" }}
+ <p class="single-summary">{{ . }}</p>
{{ end }}
{{/* Reading Time */}}
<p class="single-readtime">
- {{if .Date }}
- {{ $dateMachine := .Date | time.Format "2006-01-02T15:04:05-07:00" }}
- {{ $dateHuman := .Date | time.Format ":date_long" }}
+ {{ with .Date }}
+ {{ $dateMachine := . | time.Format "2006-01-02T15:04:05-07:00" }}
+ {{ $dateHuman := . | time.Format ":date_long" }}
<time datetime="{{ $dateMachine }}">{{ $dateHuman }}</time>
- -
{{end}}
- {{if (.Param "readTime")}}
- {{.ReadingTime}} min
+
+ {{ if .Param "readTime" }}
+ -
+ {{ .ReadingTime }} min
{{end }}
</p>