footer.html 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <footer>
  2. <div class="container-md beautiful-jekyll-footer">
  3. <div class="row">
  4. <div class="col-xl-8 offset-xl-2 col-lg-10 offset-lg-1">
  5. {% include social-networks-links.html %}
  6. {% if page.footer-extra %}
  7. <div class="footer-custom-content">
  8. {% include {{ page.footer-extra }} %}
  9. </div>
  10. {% endif %}
  11. <p class="copyright text-muted">
  12. {% if site.author %}
  13. {{ site.author }}
  14. &nbsp;&bull;&nbsp;
  15. {% endif %}
  16. {{ site.time | date: '%Y' }}
  17. {% if site.url-pretty %}
  18. &nbsp;&bull;&nbsp;
  19. <a href="{{ '' | absolute_url }}">{{ site.url-pretty }}</a>
  20. {% endif %}
  21. {% if site.matomo %}
  22. {% if site.matomo.opt-out %}
  23. &nbsp;&bull;&nbsp;
  24. <a href="http://{{- site.matomo.uri -}}/index.php?module=CoreAdminHome&action=optOut" target="_blank" class="text_muted">Do-not-Track</a>
  25. {% endif %}
  26. {% endif%}
  27. </p>
  28. <!-- Please don't remove this, keep my open source work credited :) -->
  29. <p class="theme-by text-muted">
  30. Theme by
  31. <a href="https://beautifuljekyll.com">beautiful-jekyll</a>
  32. </p>
  33. </div>
  34. </div>
  35. </div>
  36. </footer>