footer.html 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. {% for file in page.footer-extra %}
  9. {% include {{ file }} %}
  10. {% endfor %}
  11. </div>
  12. {% endif %}
  13. <p class="copyright text-muted">
  14. {% if site.author %}
  15. {{ site.author }}
  16. &nbsp;&bull;&nbsp;
  17. {% endif %}
  18. {{ site.time | date: '%Y' }}
  19. {% if site.url-pretty %}
  20. &nbsp;&bull;&nbsp;
  21. <span class="author-site">
  22. <a href="{% if site.url-canonical %}{{ site.url-canonical }}{% else %}{{ '' | absolute_url }}{% endif %}">{{ site.url-pretty }}</a>
  23. </span>
  24. {% endif %}
  25. {% if site.matomo %}
  26. {% if site.matomo.opt-out %}
  27. &nbsp;&bull;&nbsp;
  28. <a href="http://{{- site.matomo.uri -}}/index.php?module=CoreAdminHome&action=optOut" target="_blank" class="text_muted">Do-not-Track</a>
  29. {% endif %}
  30. {% endif%}
  31. {% if site.edit_page_button and site.github.repository_url %}
  32. &nbsp;&bull;&nbsp;
  33. <a title="Edit this page on GitHub" href="{{ site.github.repository_url }}/edit/{{ site.github.source.branch }}/{{ page.path }}" class="text_muted">Edit page</a>
  34. {% endif%}
  35. </p>
  36. {% unless site.remove-ads %}<p class="theme-by text-muted">
  37. Powered by
  38. <a href="https://beautifuljekyll.com">Beautiful Jekyll</a>
  39. </p>{% endunless %}
  40. </div>
  41. </div>
  42. </div>
  43. </footer>