forked from jgthms/bulma
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfullheight.html
More file actions
50 lines (46 loc) · 1.28 KB
/
Copy pathfullheight.html
File metadata and controls
50 lines (46 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{% assign hero_link = site.data.links.by_id['layout-hero'] %}
<section class="bd-index-fullscreen hero is-fullheight is-light">
<div class="hero-head">
<div class="container">
<div class="tabs is-centered">
<ul>
<li><a>This is always at the top</a></li>
</ul>
</div>
</div>
</div>
<div class="hero-body">
<div class="container">
<header class="bd-index-header">
<h3 class="title is-3">
<a href="{{ site.url }}{{ hero_link.path }}">
<strong>Fullscreen</strong> vertical centering
</a>
</h3>
<h4 class="subtitle is-4">
Include any content you want, it's always centered
</h4>
</header>
<nav class="buttons is-centered">
<a
class="button is-large is-primary"
href="{{ site.url }}{{ hero_link.path }}"
>
<span>Check out the <strong>Hero component</strong></span>
<span class="icon">
<i class="fas fa-arrow-right"></i>
</span>
</a>
</nav>
</div>
</div>
<div class="hero-foot">
<div class="container">
<div class="tabs is-centered">
<ul>
<li><a>And this at the bottom</a></li>
</ul>
</div>
</div>
</div>
</section>