mirror of
https://github.com/jgthms/bulma.git
synced 2024-11-14 11:14:24 +00:00
42 lines
926 B
HTML
42 lines
926 B
HTML
---
|
|
title: Footer
|
|
layout: docs
|
|
theme: library
|
|
doc-tab: layout
|
|
doc-subtab: footer
|
|
breadcrumb:
|
|
- home
|
|
- documentation
|
|
- layout
|
|
- layout-footer
|
|
meta:
|
|
variables: true
|
|
---
|
|
{% capture footer_example %}
|
|
<footer class="footer">
|
|
<div class="content has-text-centered">
|
|
<p>
|
|
<strong>Bulma</strong> by <a href="https://jgthms.com">Jeremy Thomas</a>.
|
|
The source code is licensed
|
|
<a href="https://opensource.org/license/mit">MIT</a>. The
|
|
website content is licensed
|
|
<a href="https://creativecommons.org/licenses/by-nc-sa/4.0//"
|
|
>CC BY NC SA 4.0</a
|
|
>.
|
|
</p>
|
|
</div>
|
|
</footer>
|
|
{% endcapture %}
|
|
|
|
<div class="content">
|
|
<p>
|
|
The Bulma <strong>footer</strong> is a simple container, with lots of bottom padding, making it great as the last
|
|
element of any webpage.
|
|
</p>
|
|
</div>
|
|
|
|
{%
|
|
include docs/elements/snippet.html content=footer_example horizontal=true
|
|
more=true
|
|
%}
|