footer.html 1.1 KB

12345678910111213141516
  1. <footer id="site-footer" class="wrapper">
  2. <div class="footer-r">
  3. {{- with .Site.Params.social -}}
  4. <p class="social-icon">{{ partialCached "social-icons.html" . }}</p>
  5. {{- end -}}
  6. </div>
  7. <div class="footer-l">
  8. <nav class="site-nav">
  9. <a href="{{.Site.BaseURL}}">Home</a><span>&#47;</span>
  10. {{- range .Site.Menus.main -}}
  11. <a href="{{ .URL }}">{{ .Name }}</a><span>&#47;</span>
  12. {{- end }}
  13. </nav>
  14. <p class="site-copy">&copy; {{ now.Format "2006" }} <a href="{{ .Site.BaseURL }}">{{ .Site.Author.name }}</a> &#183; <a href="https://creativecommons.org/licenses/by-nc/4.0/deed.zh" target="_blank" rel="noopener">CC BY-NC 4.0</a> &#183; <a href="{{ "posts/index.xml" | absURL }}" target="_blank" title="RSS" class="icon-link"><svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-rss"><path d="M4 11a9 9 0 0 1 9 9"></path><path d="M4 4a16 16 0 0 1 16 16"></path><circle cx="5" cy="19" r="1"></circle></svg></a></p>
  15. </div>
  16. </footer>