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

footer.html « partials « layouts - github.com/AngeloStavrow/indigo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 35f8718be5db0f8a436ac619e60d51f943166ac7 (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
<!-- Footer content -->
    {{ if .Site.Params.ShowBio }}
    <div class="h-card">
      <img class="u-photo" src="{{ .Site.Params.Avatar | absURL }}" />
      <div class="card-content">
        <h2 class="card-name"><a class="p-name u-url" href="{{ .Site.BaseURL }}" rel="me">{{ .Site.Params.Author }}</a></h2>
        <p class="card-subhead">
          <span class="p-locality">{{ .Site.Params.IndieWeb.City }}</span>,
          <span class="p-country-name">{{ .Site.Params.IndieWeb.Country }}</span><br />
          <a class="u-email" href="mailto:{{ .Site.Params.IndieWeb.EmailAddress }}">Email me</a>
        </p>
      </div>
      <p class="p-note">{{ .Site.Params.Biography }}</p>
    </div>
    {{ end }}
    <div id="footer">
      {{ if or (.NextPage) (.PrevPage) }}
      <nav id="article-skip">
        <div class="next">
          {{ if and (.NextPage) (not .Params.Menu) }}
          <a alt="Newer article" href="{{ .NextPage.Permalink }}">&larr; Newer</a>
          {{ else }}
          <p>&nbsp;</p>
          {{ end }}
        </div>
        <div class="top">
          <a alt="Top of page" href="#">Top</a>
        </div>
        <div class="prev">
          {{ if and (.PrevPage) (not .Params.Menu) }}
          <a alt="Older article" href="{{ .PrevPage.Permalink }}">Older &rarr;</a>
          {{ else }}
          <p>&nbsp;</p>
          {{ end }}
        </div>
      </nav>
      {{ end }}
      {{ partial "social.html" . }}
      {{ with .Site.Copyright }}
      <p class="copyright">
          {{ . }}
      </p>
      {{ end }}
    </div>

<!-- Close the body/html document -->
</body>
</html>