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

page_footer.html « partials « layouts - github.com/jnjosh/internet-weblog.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 19a39b5861d9e152d6389676df6a64150f5341f7 (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
<footer>
  <div class="footer_text">
      <div>
        <h3>Hi, <a href="{{ .Site.Author.aboutpage }}">I'm {{ .Site.Author.firstname }}</a></h3>
        <p>
          {{ partial "bio.html" . }}
        </p>
      </div>
      {{ if isset .Site.Author "flickrid" | and ( not ( eq .Site.Author.flickrid "" ) ) }}
      <div>
          <h3><a href="https://www.flickr.com/photos/{{ .Site.Author.flickrid }}/">Photo Stream</a></h3>
          <div id="photos"></div>
        </div>
      </div>
      {{ end }}
  </div>

  {{ if .Site.Params.showcopyright }}
    <div class="footer_copyright">
      &copy; {{ .Now.Format "2006" }} <a href="{{ .Site.Author.aboutpage }}">{{ .Site.Author.firstname }} {{ .Site.Author.lastname }}</a>
      {{ with .Site.Author.location }} - Made in {{ . }}{{ end }}
    </div>
  {{ end }}
</footer>