footer.html 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. ---
  2. title: Footer
  3. layout: documentation
  4. doc-tab: layout
  5. doc-subtab: footer
  6. variables:
  7. - name: $footer-background-color
  8. value: $background
  9. ---
  10. {% include subnav-layout.html %}
  11. <section class="section">
  12. <div class="container">
  13. <h1 class="title">Footer</h1>
  14. <h2 class="subtitle">
  15. A simple responsive <strong>footer</strong> which can include anything: lists, headings, columns, icons, buttons, etc.
  16. </h2>
  17. <div class="bd-example">
  18. <footer class="footer">
  19. <div class="container">
  20. <div class="content has-text-centered">
  21. <p>
  22. <strong>Bulma</strong> by <a href="http://jgthms.com">Jeremy Thomas</a>. The source code is licensed
  23. <a href="http://opensource.org/licenses/mit-license.php">MIT</a>. The website content
  24. is licensed <a href="http://creativecommons.org/licenses/by-nc-sa/4.0/">CC BY NC SA 4.0</a>.
  25. </p>
  26. <p>
  27. <a class="icon" href="https://github.com/jgthms/bulma">
  28. <i class="fa fa-github"></i>
  29. </a>
  30. </p>
  31. </div>
  32. </div>
  33. </footer>
  34. </div>
  35. {% highlight html %}
  36. <footer class="footer">
  37. <div class="container">
  38. <div class="content has-text-centered">
  39. <p>
  40. <strong>Bulma</strong> by <a href="http://jgthms.com">Jeremy Thomas</a>. The source code is licensed
  41. <a href="http://opensource.org/licenses/mit-license.php">MIT</a>. The website content
  42. is licensed <a href="http://creativecommons.org/licenses/by-nc-sa/4.0/">CC BY NC SA 4.0</a>.
  43. </p>
  44. <p>
  45. <a class="icon" href="https://github.com/jgthms/bulma">
  46. <i class="fa fa-github"></i>
  47. </a>
  48. </p>
  49. </div>
  50. </div>
  51. </footer>
  52. {% endhighlight %}
  53. {% include variables.html layout=true %}
  54. </div>
  55. </section>