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

github.com/uicardiodev/hugo-uilite.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials/services.html')
-rw-r--r--layouts/partials/services.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/layouts/partials/services.html b/layouts/partials/services.html
new file mode 100644
index 0000000..71ac570
--- /dev/null
+++ b/layouts/partials/services.html
@@ -0,0 +1,20 @@
+{{ $services := .Site.Data.services }}
+
+<section class="blue">
+ <h2 class="heading">{{ $services.title }}</h2>
+
+ <div class="row justify-content-md-center text-center">
+
+ {{ range $index, $element := $services.services }}
+
+ <div class="col-12 col-lg-6 col-md-6 mb-3">
+ <div class="card p-4">
+ <i class="mt-3 fa fa-{{ $element.icon }} fa-3x"></i>
+ <h5 class="mt-4">{{ $element.title }}</h5>
+ <p class="text-muted">{{ $element.description }}</p>
+ </div>
+ </div>
+
+ {{ end }}
+ </div>
+</section> \ No newline at end of file