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><a href="mailto:{{ site.email }}">{{ site.email }}</a></li>
  8. </ul>
  9. <ul class="social-media-list">
  10. {% if site.gitlab_username %}
  11. <li>
  12. {% include icon-gitlab.html username=site.gitlab_username %}
  13. </li>
  14. {% endif %}
  15. {% if site.github_username %}
  16. <li>
  17. {% include icon-github.html username=site.github_username %}
  18. </li>
  19. {% endif %}
  20. {% if site.twitter_username %}
  21. <li>
  22. {% include icon-twitter.html username=site.twitter_username %}
  23. </li>
  24. {% endif %}
  25. </ul>
  26. </div>
  27. <div class="footer-col footer-col-2">
  28. </div>
  29. <div class="footer-col footer-col-3">
  30. <p style="text-align:right;">{{ site.description }}</p>
  31. <p style="text-align:right;"><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>
  32. </div>
  33. </div>
  34. </div>
  35. </footer>