footer.html 982 B

1234567891011121314151617181920212223242526272829303132333435
  1. ---
  2. title: Footer
  3. subtitle: "A simple responsive <strong>footer</strong> which can include anything: lists, headings, columns, icons, buttons, etc."
  4. layout: documentation
  5. hide_carbon: true
  6. doc-tab: layout
  7. doc-subtab: footer
  8. breadcrumb:
  9. - home
  10. - documentation
  11. - layout
  12. - layout-footer
  13. ---
  14. {% capture footer_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="https://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 BY NC SA 4.0</a>.
  22. </p>
  23. </div>
  24. </div>
  25. </footer>
  26. {% endcapture %}
  27. {% include layout/main-close.html %}
  28. {% include snippet.html content=footer_example horizontal=true more=true fullwidth=true %}
  29. {% include layout/main-open.html %}
  30. {% include variables.html %}