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

footer.html « partials « layouts - github.com/10mohi6/hugo-theme-simple-blog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cb58bb056dbba931d50e36267c74fb292db52b48 (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
<footer class="site-footer mt-5">
  <div class="container">
      <div class="row justify-content-md-between">
          <div class="col-sm-12 col-md-4 mb-4">
              <h2 class="h5 mb-3">{{ .Site.Title }}</h2>
              <p>{{.Site.Params.Description}}</p>
          </div>
          <div class="col-4 col-md-2 mb-4">
              <h2 class="h5 mb-3">Menu</h2>
              <ul class="nav flex-column">
                  <li class="mb-1"><a href="{{ .Site.BaseURL }}" class="text-secondary">Home</a></li>
                  {{ range .Site.Menus.main }}
                  <li class="mb-1"><a href="{{ .URL }}" class="text-secondary">{{ .Name }}</a></li>
                  {{ end }}
              </ul>
          </div>
      </div>

      <hr/>

      <div class="d-flex flex-column flex-sm-row justify-content-sm-between align-items-center">
          <div class="text-muted mb-3">
              {{ .Site.Copyright }}
              <a href="https://10mohi6.tk" class="text-reset">design</a> <a href="https://github.com/10mohi6/hugo-theme-simple-blog" class="text-reset">theme</a></p>
          </div>
      </div>
  </div>
</footer>
</body>
</html>