hugo-theme-readable

Fork of https://github.com/cjtheham/hugo-theme-readable
git clone https://git.eamoncaddigan.net/hugo-theme-readable.git
Log | Files | Refs | README | LICENSE

footer.html (874B)


      1 {{ if .Site.Params.footer.minimal | not }} 
      2 <p>
      3 	<a href="/policies/privacy/">Privacy Policy</a> | <a href="/policies/cookies/">Cookie Policy</a> | <a href="/policies/terms/">Terms of Use</a>
      4 	</p> 
      5 {{ end }}
      6 
      7 {{ with .Site.Copyright }}
      8 <p>{{ now.Format "2006" }} ©  {{ . | markdownify }}</p>
      9 {{ else }} 
     10 <p>{{ now.Format "2006" }} ©  {{ .Site.Params.Author }} {{ with .Site.Params.License }} - {{ . | markdownify }} {{ end }} </p> <!-- While not legally required, it's nice to put copyright and/or license info here. Also, it looks nice to break up the links with a line of text -->
     11 {{ end }} 
     12 <a href={{ $.Site.Params.Mastodon }} rel="me" target="blank">Mastodon</a> | <a href="/contact/">Contact Me</a> | <a href="/posts/index.xml">RSS Feed</a></p> <!-- This is the kind of thing people look for in footers: contact info and legal info. Make sure you include both! -->