setto.basspistol.com/_includes/header.html

40 lines
919 B
HTML
Raw Normal View History

2020-09-11 19:02:26 +02:00
{% include relBase.html %}
<header class="hero" id="top"
style="{% unless page.video_path %}background-image: url({{ page.image }});{% endunless %}">
<div class="imagecontainer">
<h4>{{ page.title }}</h4>
</div>
2020-09-18 11:15:11 +02:00
<section class="splash">
2020-09-11 19:02:26 +02:00
2020-09-18 11:15:11 +02:00
<div class="container">
2020-09-11 19:13:45 +02:00
2020-09-18 11:15:11 +02:00
<div class="splash-logo">
<img src="{{ site.logo }}" width="240px" alt="{{ site.title }} Logo" />
</div>
<div class="description" {% unless page.url == '/' %}style="padding: 0;"{% endunless %}>
<h1>{{ page.title }}</h1>
{% if page.category == 'releases' %}
{% for album in site.albums %}
{% if album.slug == page.album %}
<h4>by <strong>{{ album.artists }}</strong></h4>
{% endif %}
{% endfor %}
{% endif %}
<p>{{ page.description }}</p>
</div>
</div>
</section>
2020-09-11 19:13:45 +02:00
2020-09-18 11:15:11 +02:00
</header>
2020-09-11 19:02:26 +02:00
2020-08-05 10:48:20 +02:00