kamathskitchen-website/themes/raavas/layouts/partials/footer.html

40 lines
1.5 KiB
HTML
Executable File

<hr class="divider">
<footer class="footer" >
{{ if ne .Kind "home" }}
<section class="content">
<h3>Tag List</h3>
<ul class="tag-cloud">{{ range $name, $taxonomy := .Site.Taxonomies.tags }}
{{ with $.Site.GetPage (printf "/tags/%s" $name) }}
<li class="tag-list-item"><a class="tag-link" href="{{ .Permalink }}">{{ $name }}</a></li>
{{ end }}
{{ end }}
</ul>
</section>
{{ end }}
<section class="content">
<h3>Quick Links</h3>
<p>
<a href="{{ .Site.BaseURL }}/recipes">Recipes</a> &ndash;
<a href="{{ .Site.BaseURL }}/about">About</a> &ndash;
{{ if .IsPage }}
<a href="/index.xml">RSS Feed</a>
{{ else }}
<a href='{{ with .OutputFormats.Get "rss" -}}{{ .RelPermalink }}{{ end }}'>RSS Feed</a> {{ end }}
</p>
</section>
<section class="content">
<h3>Privacy Policy, License and Copyright</h3>
<p> All contents © copyright 2009 -
{{ now.Year }} <a class="p-author h-card" rel="author" href="{{ .Site.BaseURL}}">Smitha R Kamath</a> and
respective author unless otherwise
noted. All rights reserved. <a class="link" href="{{ .Site.BaseURL }}/license">Read more</a> about the licenses.
You can read the Privacy Policy and Terms of Service <a href="{{ .Site.BaseURL }}/privacy" class="link">here</a>.
</p>
</section>
<a class="to-top with-js" id="js-top">&uarr; go to top &uarr;</a>
<noscript> <style> .with-js{display:none}</style><a class="to-top" href="#to-top">&uarr; go to top &uarr;</a></noscript>
</footer>
{{ with resources.Get "js/main.js" | minify }}
<script>{{ .Content | safeJS }}</script>
{{ end }}