footer.html 1.6 KB

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