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

footer.html « partials « layouts - github.com/yihui/hugo-xmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0689dd3b8977fda62c64b9aa8b2010f6cb66533e (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
  <footer>
  {{ partial "foot_custom.html" . }}
  {{ with .Site.Params.footer }}
  <hr/>
  {{ replace . "{Year}" now.Year | markdownify}}
  {{ end }}
  {{ if .File.Path }}
    {{ $.Scratch.Set "FilePath" .File.Path }}
    {{ $RmdFile := (print .File.BaseFileName ".Rmd") }}
    {{ $Files := readDir (print "content/" .File.Dir) }}
    {{ if (where $Files "Name" $RmdFile) }}
      {{ $.Scratch.Set "FilePath" (print .File.Dir $RmdFile) }}
    {{ else }}
      {{ $RmdFile := (print .File.BaseFileName ".Rmarkdown") }}
      {{ if (where $Files "Name" $RmdFile) }}
        {{ $.Scratch.Set "FilePath" (print .File.Dir $RmdFile) }}
      {{ end }}
    {{ end }}
    {{ with .Site.Params.GithubEdit}}
    | <a href="{{ . }}{{ $.Scratch.Get "FilePath" }}">Edit this page</a>
    {{ end }}
  {{ end }}
  </footer>
  </body>
</html>