footer.html 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <footer class="site-footer">
  2. <div class="wrapper">
  3. <h2 class="footer-heading">{{ site.title }}</h2>
  4. <div class="footer-col-wrapper">
  5. <div class="footer-col footer-col-1">
  6. <ul class="contact-list">
  7. <li>{{ site.title }}</li>
  8. <li><a href="mailto:{{ site.email }}">{{ site.email }}</a></li>
  9. </ul>
  10. <p><a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-sa/4.0/88x31.png" /></a></p>
  11. </div>
  12. <div class="footer-col footer-col-2">
  13. <ul class="social-media-list">
  14. {% if site.gitlab_username %}
  15. <li>
  16. {% include icon-gitlab.html username=site.gitlab_username %}
  17. </li>
  18. {% endif %}
  19. {% if site.github_username %}
  20. <li>
  21. {% include icon-github.html username=site.github_username %}
  22. </li>
  23. {% endif %}
  24. {% if site.twitter_username %}
  25. <li>
  26. {% include icon-twitter.html username=site.twitter_username %}
  27. </li>
  28. {% endif %}
  29. </ul>
  30. </div>
  31. <div class="footer-col footer-col-3">
  32. <p>{{ site.description }}</p>
  33. </div>
  34. </div>
  35. </div>
  36. </footer>