footer.html 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <footer>
  2. <div class="container beautiful-jekyll-footer">
  3. <div class="row">
  4. <div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
  5. <ul class="list-inline text-center footer-links">
  6. {%- for link in site.social-network-links -%}
  7. {%- assign curkey = link[0] -%}
  8. {%- assign element = site.data.SocialNetworks[curkey] -%}
  9. <li>
  10. {%- if curkey == 'rss' -%}
  11. <a href="{{ '/feed.xml' | relative_url }}" title="{{ element.name }}">
  12. {%- elsif curkey == 'yelp' -%}
  13. <a href="https://{{ site.social-network-links[curkey] }}.yelp.com" title="{{ element.name }}">
  14. {%- else -%}
  15. <a href="{{element.baseURL}}{{ site.social-network-links[curkey] }}" title="{{ element.name }}">
  16. {%- endif -%}
  17. <span class="fa-stack fa-lg" aria-hidden="true">
  18. <i class="fa fa-circle fa-stack-2x"></i>
  19. <i class="fa {{ element.icon }} fa-stack-1x fa-inverse"></i>
  20. </span>
  21. <span class="sr-only">{{ element.name }}</span>
  22. </a>
  23. </li>
  24. {%- endfor -%}
  25. </ul>
  26. <p class="copyright text-muted">
  27. {{ site.author.name }}
  28. &nbsp;&bull;&nbsp;
  29. {{ site.time | date: '%Y' }}
  30. {% if site.url-pretty %}
  31. &nbsp;&bull;&nbsp;
  32. <a href="{{ '' | absolute_url }}">{{ site.url-pretty }}</a>
  33. {% endif %}
  34. {% if site.matomo %}
  35. {% if site.matomo.opt-out %}
  36. &nbsp;&bull;&nbsp;
  37. <a href="http://{{- site.matomo.uri -}}/index.php?module=CoreAdminHome&action=optOut" target="_blank" class="text_muted">Do-not-Track</a>
  38. {% endif %}
  39. {% endif%}
  40. </p>
  41. <!-- Please don't remove this, keep my open source work credited :) -->
  42. <p class="theme-by text-muted">
  43. Theme by
  44. <a href="https://deanattali.com/beautiful-jekyll/">beautiful-jekyll</a>
  45. </p>
  46. </div>
  47. </div>
  48. </div>
  49. </footer>