mirror of
https://github.com/yuzu-emu/shared-bulma-theme.git
synced 2024-11-22 20:05:39 +01:00
26 lines
964 B
HTML
26 lines
964 B
HTML
<section id="homepage-hero" class="hero is-medium is-primary is-bold">
|
|
<div class="hero-head">
|
|
<!-- is-dark / is-light is set by hero.js for the homepage hero -->
|
|
<nav id="hero-navbar" class="navbar is-size-6 is-fixed-top" role="navigation" aria-label="main navigation">
|
|
{{ partial "layout/navbar_contents" . }}
|
|
</nav>
|
|
</div>
|
|
|
|
<div class="hero-body">
|
|
<div class="container">
|
|
<div class="columns">
|
|
<!-- Left panel -->
|
|
<div class="column is-centered-vertically is-5">
|
|
{{ partial "home_hero_contents" . }}
|
|
</div>
|
|
|
|
<!-- Right panel -->
|
|
<div class="column is-7">
|
|
<figure class="image is-16by9">
|
|
<img src="{{ .Site.BaseURL}}/images/jumbotron.png" />
|
|
</figure>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section> |