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

bottom.html « partials « layouts - github.com/damiencaselli/hugo-journal.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1a14b75208a24c10c71ac2ada385695728e1ae2d (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

      <footer class="site-footer">
        <span itemscope itemtype="http://schema.org/Person">
          <link itemprop="url" href="{{ .Site.BaseURL }}">
          <span itemprop="name">{{- .Site.Author.name -}}</span>

          {{ if isset .Site.Params "work" -}},
          <span itemprop="jobTitle">{{- .Site.Params.work.jobTitle -}}</span> at
          <span itemprop="memberOf" itemscope itemtype="http://schema.org/Organization"><a itemprop="url" href="{{ .Site.Params.work.companyUrl }}"><span itemprop="name">
            {{- .Site.Params.work.company -}}
          </span></a></span>
          {{- end -}}

          <br>

          {{ if isset .Site.Params "githubusername" -}}
          <a itemprop="sameAs" href="https://github.com/{{ .Site.Params.githubUsername }}" title="GitHub">GH</a>
          {{- end }}

          {{ if isset .Site.Params "twitterusername" -}}
          <a itemprop="sameAs" href="https://twitter.com/{{ .Site.Params.twitterUsername }}" title="Twitter">TW</a>
          {{- end}}

          {{ if isset .Site.Params "gpg" -}}
          <a itemprop="sameAs" href="{{ .Site.Params.gpg.link }}" title="GPG {{ .Site.Params.gpg.key }} (fingerprint: {{ .Site.Params.gpg.fingerprint }})">GPG</a>
          {{- end }}
        </span>

        {{ "<!-- Build date: " | safeHTML }}{{ (now.Format "Mon, 02 Jan 2006 15:04:05 MST") | safeHTML }}{{ " -->" | safeHTML }}
      </footer>
    </div>

  {{ if not .IsHome -}}
  <script src="{{ "js/highlight.pack.js" | relURL }}"></script>
  <script>hljs.initHighlightingOnLoad();</script>
  {{- end }}

  </body>
</html>