1234567891011121314151617181920212223242526272829303132333435363738 |
- <footer>
- <div class="container-md beautiful-jekyll-footer">
- <div class="row">
- <div class="col-xl-8 offset-xl-2 col-lg-10 offset-lg-1">
- {% include social-networks-links.html %}
- {% if page.footer-extra %}
- <div class="footer-custom-content">
- {% include {{ page.footer-extra }} %}
- </div>
- {% endif %}
- <p class="copyright text-muted">
- {% if site.author %}
- {{ site.author }}
- •
- {% endif %}
- {{ site.time | date: '%Y' }}
- {% if site.url-pretty %}
- •
- <a href="{{ '' | absolute_url }}">{{ site.url-pretty }}</a>
- {% endif %}
- {% if site.matomo %}
- {% if site.matomo.opt-out %}
- •
- <a href="http://{{- site.matomo.uri -}}/index.php?module=CoreAdminHome&action=optOut" target="_blank" class="text_muted">Do-not-Track</a>
- {% endif %}
- {% endif%}
- </p>
- <!-- Please don't remove this, keep my open source work credited :) -->
- <p class="theme-by text-muted">
- Theme by
- <a href="https://beautifuljekyll.com">beautiful-jekyll</a>
- </p>
- </div>
- </div>
- </div>
- </footer>
|