-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
54 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
{>"shared/base" /} | ||
|
||
{<content} | ||
<main class="main-content" id="main-content"> | ||
{?Page.hero_image} | ||
{>"views/page/page-hero" /} | ||
{/Page.hero_image} | ||
|
||
{?Header.breadcrumbs} | ||
<div class="breadcrumbs-container section pt-6 pb-7"> | ||
<div class="container"> | ||
<div class="columns"> | ||
<div class="column"> | ||
{>"ui/breadcrumbs" breadcrumbs=Header.breadcrumbs /} | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
{/Header.breadcrumbs} | ||
|
||
<section class="page__hero-heading section pt-5-desktop pt-0 pb-0"> | ||
{>"ui/entry-title" class="mt-0 has-text-centered is-uppercase" /} | ||
</section> | ||
|
||
<section class="section {?Header.hero_image}pt-7{:else}{?Header.breadcrumbs}pt-0{:else}pt-10{/Header.breadcrumbs}{/Header.hero_image}"> | ||
<div class="container"> | ||
<div class="columns"> | ||
<div class="column is-12"> | ||
<article class="entry"> | ||
{>"ui/entry-title" class="mt-0 has-text-centered" hero_image=Page.hero_image /} | ||
<div class="entry__content is-content-grid keep-vertical-spacing"> | ||
{@content /} | ||
</div> | ||
</article> | ||
</div> | ||
</div> | ||
</div> | ||
</section> | ||
|
||
{>"ui/components" components=Page.components /} | ||
</main> | ||
|
||
{#Page} | ||
{?post_siblings} | ||
{>"ui/sibling-navigation" /} | ||
{/post_siblings} | ||
{/Page} | ||
{/content} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1 @@ | ||
<section class="page__hero section is-relative pt-0 pb-0 has-background-cover" {@inlinebg id=Page.hero_image size="fullhd" /}> | ||
{?Page.use_overlay} | ||
<div class="overlay overlay--dark-50"></div> | ||
{/Page.use_overlay} | ||
|
||
<div class="is-absolute has-bottom-2 has-right-0 has-left-0 "> | ||
<div class="container"> | ||
<div class="columns"> | ||
<div class="column is-8 is-offset-2"> | ||
{>"ui/entry-title" class="mt-0 has-text-centered has-text-white mb-0 is-uppercase" /} | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</section> | ||
<section class="page__hero section is-relative pt-0 pb-0 has-background-cover" {@inlinebg id=Page.hero_image size="fullhd" /}></section> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters