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

github.com/uicardiodev/hugo-sodium-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials/pricing.html')
-rw-r--r--layouts/partials/pricing.html31
1 files changed, 31 insertions, 0 deletions
diff --git a/layouts/partials/pricing.html b/layouts/partials/pricing.html
new file mode 100644
index 0000000..e319969
--- /dev/null
+++ b/layouts/partials/pricing.html
@@ -0,0 +1,31 @@
+{{ $pricing := .Site.Data.pricing }}
+<section id="pricing" class="py-5">
+ <div class="container text-center">
+ <h2 class="pt-5 h2">{{ $pricing.title }}</h2>
+ <p class="text-muted pb-5">{{ $pricing.description }}</p>
+ <div class="row justify-content-md-center">
+ {{ range $pricing.content }}
+ <div class="col-12 col-lg-3 col-md-6 col-sm-12 mb-4">
+ <div class="pricing p-4">
+ <h5 class="h5 title">{{ .title }}</h5>
+ <span class="price my-3">{{ .price }}</span>
+ <hr>
+ <div class="features text-left">
+ {{ range .features }}
+ <div class="my-2 text-muted"><i class="fa fa-check mr-3 text-success"></i>{{ . }}</div>
+ {{ end }}
+ </div>
+ <a href="{{ .button.href | absURL }}" class="btn btn-outline-dark mt-4">{{ .button.text }}</a>
+ </div>
+ </div>
+ {{ end }}
+ </div>
+
+ </div>
+</section>
+
+<style type="text/css">
+ #pricing{
+ background: linear-gradient(165deg, #ffffff 0%,#ffffff 45%,#fc5f3c 45%,#ff55d3 90%, #ffffff 90%, #ffffff 100%);
+ }
+</style> \ No newline at end of file