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

github.com/devcows/hugo-universal-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillermo Guerrero <wolf.fox1985@gmail.com>2022-09-30 16:17:48 +0300
committerGitHub <noreply@github.com>2022-09-30 16:17:48 +0300
commit1af54bd807987d5d7000c039e5409bacd3378283 (patch)
tree5baefb5a26333c3469691fe5ed25170a89325070
parentbc73bc02a843c840a5969e44bcd21493361cc894 (diff)
Not fail when folders doesn't exist. (#371)HEAD1.4master
-rw-r--r--layouts/partials/carousel.html2
-rw-r--r--layouts/partials/clients.html2
-rw-r--r--layouts/partials/features.html2
-rw-r--r--layouts/partials/testimonials.html2
4 files changed, 8 insertions, 0 deletions
diff --git a/layouts/partials/carousel.html b/layouts/partials/carousel.html
index 5d0e42b..e3b25c5 100644
--- a/layouts/partials/carousel.html
+++ b/layouts/partials/carousel.html
@@ -1,4 +1,5 @@
{{ if default true .Site.Params.CarouselHomepage.enable }}
+{{ if isset .Site.Data "carousel" }}
{{ if gt (len .Site.Data.carousel) 0 }}
<section>
<div class="home-carousel">
@@ -34,3 +35,4 @@
</section>
{{ end }}
{{ end }}
+{{ end }}
diff --git a/layouts/partials/clients.html b/layouts/partials/clients.html
index 00583f3..3608e5e 100644
--- a/layouts/partials/clients.html
+++ b/layouts/partials/clients.html
@@ -1,5 +1,6 @@
{{ if isset .Site.Params "clients" }}
{{ if .Site.Params.clients.enable }}
+{{ if isset .Site.Data "clients" }}
{{ if gt (len .Site.Data.clients) 0 }}
<section class="bar background-gray no-mb">
<div class="container">
@@ -38,3 +39,4 @@
{{ end }}
{{ end }}
{{ end }}
+{{ end }}
diff --git a/layouts/partials/features.html b/layouts/partials/features.html
index ea73ac5..d370d3e 100644
--- a/layouts/partials/features.html
+++ b/layouts/partials/features.html
@@ -1,5 +1,6 @@
{{ if isset .Site.Params "features" }}
{{ if .Site.Params.features.enable }}
+{{ if isset .Site.Data "features" }}
{{ if gt (len .Site.Data.features) 0 }}
<section class="bar background-white">
<div class="container">
@@ -44,3 +45,4 @@
{{ end }}
{{ end }}
{{ end }}
+{{ end }}
diff --git a/layouts/partials/testimonials.html b/layouts/partials/testimonials.html
index a14b3b6..c6af782 100644
--- a/layouts/partials/testimonials.html
+++ b/layouts/partials/testimonials.html
@@ -1,5 +1,6 @@
{{ if isset .Site.Params "testimonials" }}
{{ if .Site.Params.testimonials.enable }}
+{{ if isset .Site.Data "testimonials" }}
{{ if gt (len .Site.Data.testimonials) 0 }}
<section class="bar background-pentagon no-mb">
<div class="container">
@@ -51,3 +52,4 @@
{{ end }}
{{ end }}
{{ end }}
+{{ end }}