mirror of
https://github.com/jgthms/bulma.git
synced 2024-11-14 11:14:24 +00:00
1523ce8527
* Replace variables.json with colors.json and update related files accordingly * Add variables data files * Update variables include template and all related files to use new variables data * Fix mobile breakpoint id typo in responsivness docs page * Fix Liquid syntax error in made-with-bulma docs page * Update bulma sass files count in modular docs page * Use breakpoints data in responsiveness helpers docs page * Use breakpoints and variables data in typography helpers docs page * Add missing page titles in docs pages front matter
36 lines
992 B
HTML
36 lines
992 B
HTML
---
|
|
title: Footer
|
|
layout: documentation
|
|
doc-tab: layout
|
|
doc-subtab: footer
|
|
---
|
|
|
|
{% include subnav-layout.html %}
|
|
|
|
{% capture footer_example %}
|
|
<footer class="footer">
|
|
<div class="container">
|
|
<div class="content has-text-centered">
|
|
<p>
|
|
<strong>Bulma</strong> by <a href="http://jgthms.com">Jeremy Thomas</a>. The source code is licensed
|
|
<a href="http://opensource.org/licenses/mit-license.php">MIT</a>. The website content
|
|
is licensed <a href="http://creativecommons.org/licenses/by-nc-sa/4.0/">CC BY NC SA 4.0</a>.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
{% endcapture %}
|
|
|
|
<section class="section">
|
|
<div class="container">
|
|
<h1 class="title">Footer</h1>
|
|
<h2 class="subtitle">
|
|
A simple responsive <strong>footer</strong> which can include anything: lists, headings, columns, icons, buttons, etc.
|
|
</h2>
|
|
|
|
{% include snippet.html content=footer_example horizontal=true more=true %}
|
|
|
|
{% include variables.html %}
|
|
</div>
|
|
</section>
|