footer.html 992 B

1234567891011121314151617181920212223242526272829303132333435
  1. ---
  2. title: Footer
  3. layout: documentation
  4. doc-tab: layout
  5. doc-subtab: footer
  6. ---
  7. {% include subnav-layout.html %}
  8. {% capture footer_example %}
  9. <footer class="footer">
  10. <div class="container">
  11. <div class="content has-text-centered">
  12. <p>
  13. <strong>Bulma</strong> by <a href="http://jgthms.com">Jeremy Thomas</a>. The source code is licensed
  14. <a href="http://opensource.org/licenses/mit-license.php">MIT</a>. The website content
  15. is licensed <a href="http://creativecommons.org/licenses/by-nc-sa/4.0/">CC BY NC SA 4.0</a>.
  16. </p>
  17. </div>
  18. </div>
  19. </footer>
  20. {% endcapture %}
  21. <section class="section">
  22. <div class="container">
  23. <h1 class="title">Footer</h1>
  24. <h2 class="subtitle">
  25. A simple responsive <strong>footer</strong> which can include anything: lists, headings, columns, icons, buttons, etc.
  26. </h2>
  27. {% include snippet.html content=footer_example horizontal=true more=true %}
  28. {% include variables.html %}
  29. </div>
  30. </section>