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

github.com/cristianmarint/sicily-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials/footer.html')
-rw-r--r--layouts/partials/footer.html61
1 files changed, 61 insertions, 0 deletions
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
new file mode 100644
index 0000000..f7cc19b
--- /dev/null
+++ b/layouts/partials/footer.html
@@ -0,0 +1,61 @@
+
+<!-- Branding -->
+{{ partial "page-branding.html" . }}
+
+<div class="footer-clean">
+ <footer>
+ <div class="container">
+ <h1 style="color: #000000;">Join us</h1>
+ <div class="row justify-content-center mr-5 ml-5 p-5">
+ <div class="col col-md-4 mt-5">
+ <h3 class="text-uppercase" style="color: rgb(0,0,0);">{{site.Params.company.country}}</h3>
+ <ul>
+ <li>{{site.Params.company.address}}</li>
+ <li>{{site.Params.company.city}}</li>
+ <li>{{site.Params.company.phone}}</li>
+ <li class="mt-3 mb-4" style="color: rgb(0,0,0);">
+ <a class="pt-5" href="mailto:{{site.Params.company.email}}" style="font-weight: bold;color: rgb(0,0,0);" target="_blank">{{site.Params.company.email}}</a>
+ </li>
+ </ul>
+ </div>
+ <div class="col col-md-4 mt-5">
+ <h3 class="text-uppercase">Company</h3>
+ <ul>
+ {{ range site.Menus.company }}
+ <li><a href="{{ .URL | absURL }}">{{ .Name }}</a></li>
+ {{ end }}
+ </ul>
+ </div>
+ <div class="col col-md-4 mt-5">
+ <h3 class="text-uppercase">Product</h3>
+ <ul>
+ {{ range site.Menus.product }}
+ <li><a href="{{ .URL | absURL }}">{{ .Name }}</a></li>
+ {{ end }}
+ </ul>
+ </div>
+ </div>
+
+ <div class="row justify-content-center mr-5 ml-5 p-5">
+ {{range site.Params.footer}}
+ <div class="col col-md-4 mt-5">
+ <h3 class="text-uppercase">{{.rol_name}}</h3>
+ <ul>
+ <li>{{.rol_representative}}</li>
+ <li><a href="mailto:{{ .rol_email }}" style="font-weight: bold;color: rgb(0,0,0);">{{ .rol_email }}</a></li>
+ </ul>
+ </div>
+ {{end}}
+ </div>
+ </div>
+ </footer>
+</div>
+
+{{ "<!-- JS Plugins -->" | safeHTML }}
+{{ range site.Params.plugins.js}}
+<script src="{{ .link | absURL }}"></script>
+{{ end }}
+
+{{ "<!-- Main Script -->" | safeHTML }}
+{{ $script := resources.Get "js/script.js" | minify}}
+<script src="{{ $script.Permalink }}"></script> \ No newline at end of file