29 lines
781 B
HTML
29 lines
781 B
HTML
|
---
|
||
|
layout: default
|
||
|
---
|
||
|
|
||
|
<style>
|
||
|
header.masthead {
|
||
|
padding-top: 10rem;
|
||
|
padding-bottom: calc(10rem - 56px);
|
||
|
background-image: url("{{ page.img }}");
|
||
|
background-position: center center;
|
||
|
background-size: cover;
|
||
|
}
|
||
|
body{
|
||
|
font-family:Merriweather,'Helvetica Neue',Arial,sans-serif;
|
||
|
padding-top: 0px;
|
||
|
}
|
||
|
</style>
|
||
|
|
||
|
<!-- Splash Image -->
|
||
|
<header class="masthead text-center text-white d-flex">
|
||
|
<div class="container my-auto">
|
||
|
<div class="row">
|
||
|
<div class="col-lg-10 mx-auto">
|
||
|
{{ content }}
|
||
|
<a class="btn btn-primary btn-xl js-scroll-trigger" href="{{ page.linkto }}">{{ page.linktext }}</a>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</header>
|