footer.html 1.2 KB

12345678910111213141516171819
  1. <div class="page__footer-follow">
  2. <ul class="social-icons">
  3. {% if site.data.ui-text[site.locale].follow_label %}
  4. <li><strong>{{ site.data.ui-text[site.locale].follow_label }}</strong></li>
  5. {% endif %}
  6. {% if site.footer.links %}
  7. {% for link in site.footer.links %}
  8. {% if link.label and link.url %}
  9. <li><a href="{{ link.url }}" rel="nofollow noopener noreferrer"><i class="{{ link.icon | default: 'fas fa-link' }}" aria-hidden="true"></i> {{ link.label }}</a></li>
  10. {% endif %}
  11. {% endfor %}
  12. {% endif %}
  13. <li><a href="{% if site.atom_feed.path %}{{ site.atom_feed.path }}{% else %}{{ '/feed.xml' | relative_url }}{% endif %}"><i class="fas fa-fw fa-rss-square" aria-hidden="true"></i> {{ site.data.ui-text[site.locale].feed_label | default: "Feed" }}</a></li>
  14. </ul>
  15. </div>
  16. <div class="page__footer-copyright">&copy; {{ site.time | date: '%Y' }} {{ site.name | default: site.title }}. {{ site.data.ui-text[site.locale].powered_by | default: "Powered by" }} <a href="https://jekyllrb.com" rel="nofollow">Jekyll</a> &amp; <a href="https://mademistakes.com/work/minimal-mistakes-jekyll-theme/" rel="nofollow">Minimal Mistakes</a>.</div>