documenting and adding defaults
This commit is contained in:
parent
7342cba3eb
commit
642f1a32f0
78 changed files with 13656 additions and 4 deletions
27
discography.html
Normal file
27
discography.html
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
---
|
||||
title: Discography
|
||||
description: Collection of music releases published by Band name of the century
|
||||
video_path: /assets/vid/pingu.mp4
|
||||
image: /images/pages/jack-hamilton-CMnNiQBkwBI-unsplash.jpg
|
||||
---
|
||||
|
||||
{% include relBase.html %}
|
||||
{% include header.html %}
|
||||
|
||||
{% assign sorted = site.posts | sort: 'date' | reverse %}
|
||||
{% for post in sorted %}
|
||||
{% if post.category == 'releases' %}
|
||||
<section id="read" class="news" style="margin:0;">
|
||||
|
||||
<div style="background-image:url({{ relBase }}{{ post.image }}"></div>
|
||||
<div class="description">
|
||||
<h2>{{ post.title }}</h2>
|
||||
<p><strong>{% include forloop-dates.html %}</strong></p>
|
||||
<p>{{ post.description }}</p>
|
||||
<p><a href="{{ relBase }}{{ post.url }}#play" class="button">🔊 Listen</a></p>
|
||||
</div>
|
||||
|
||||
|
||||
</section>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue