diff options
| author | Francesco <tomaselli.fr@gmail.com> | 2024-04-29 19:56:50 +0200 | 
|---|---|---|
| committer | Francesco <tomaselli.fr@gmail.com> | 2024-04-29 20:05:40 +0200 | 
| commit | 74329c51844759d20e973f30fdcc173bf833be95 (patch) | |
| tree | 8592a7a043f9e5a4e746d2fcc8e325df55c3f474 /layouts/_default/home.html | |
| parent | f7131b852c48742226934105df68229f3a1408a8 (diff) | |
Removed unnecessary homeIntro parameter, cleaned up layouts
Diffstat (limited to 'layouts/_default/home.html')
| -rw-r--r-- | layouts/_default/home.html | 11 | 
1 files changed, 5 insertions, 6 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 */}} | 
