40 lines
919 B
HTML
40 lines
919 B
HTML
{% 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>
|
|
<section class="splash">
|
|
|
|
<div class="container">
|
|
|
|
<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>
|
|
|
|
</header>
|
|
|
|
|
|
|
|
|