mirror of
https://github.com/jgthms/bulma
synced 2026-03-22 21:14:30 -07:00
Add footer and hero specs
This commit is contained in:
45
docs/cyp/layout/hero.html
Normal file
45
docs/cyp/layout/hero.html
Normal file
@@ -0,0 +1,45 @@
|
||||
---
|
||||
layout: cypress
|
||||
title: Layout/Hero
|
||||
---
|
||||
|
||||
{% capture content %}
|
||||
<div class="hero-body">
|
||||
<p class="title">
|
||||
Hero title
|
||||
</p>
|
||||
<p class="subtitle">
|
||||
Hero subtitle
|
||||
</p>
|
||||
</div>
|
||||
{% endcapture %}
|
||||
|
||||
<section id="hero" class="hero">
|
||||
{{ content }}
|
||||
</section>
|
||||
|
||||
<section id="hero-small" class="hero is-small">
|
||||
{{ content }}
|
||||
</section>
|
||||
|
||||
<section id="hero-medium" class="hero is-medium">
|
||||
{{ content }}
|
||||
</section>
|
||||
|
||||
<section id="hero-large" class="hero is-large">
|
||||
{{ content }}
|
||||
</section>
|
||||
|
||||
<section id="hero-halfheight" class="hero is-halfheight">
|
||||
{{ content }}
|
||||
</section>
|
||||
|
||||
<section id="hero-fullheight" class="hero is-fullheight">
|
||||
{{ content }}
|
||||
</section>
|
||||
|
||||
<section id="hero-with-container" class="hero is-halfheight">
|
||||
<div class="container">
|
||||
{{ content }}
|
||||
</div>
|
||||
</section>
|
||||
Reference in New Issue
Block a user