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

footer.html « partials « layouts - github.com/cristianmarint/sicily-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f7cc19b87cc21ffe7c37f7edcf9c0683f88154da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
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>