setto.basspistol.com/_includes/header.html
2020-08-05 12:00:02 +02:00

24 lines
681 B
HTML

<header class="hero" style="background-image: url({{ page.image }});">
<div>
<h1>{{ page.title }}</h1>
<p>{{ page.description }}</p>
{% if page.category == 'releases' %}
<p><a href="#plwrap" class="button">Listen</a></p>
{% endif %}
{% if page.category == 'ramblings' %}
<p><a href="#read" class="button">Read</a></p>
{% endif %}
{% if page.url == '/404/' %}
<p><a href="/" class="button">Take me home</a></p>
{% endif %}
</div>
<div class="imagecontainer">
</div>
{% if page.video_path %}
<video autoplay muted loop id="myVideo">
<source src="{{ page.video_path }}" type="video/mp4">
</video>
{% endif %}
</header>