diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2016-02-12 22:32:08 +0100 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2016-02-12 22:32:08 +0100 |
commit | 06a3d9eecfeaed4a0fa144616ef0be02746b06f9 (patch) | |
tree | ab76bd89a4b2dd6772f798cee293957bfb5cf47c /blog/_layouts/concert.html | |
parent | 6f1f96b5858e4d2fbdf338f2c56a877ab8028deb (diff) | |
download | norsk-urskog-main-06a3d9eecfeaed4a0fa144616ef0be02746b06f9.tar.gz norsk-urskog-main-06a3d9eecfeaed4a0fa144616ef0be02746b06f9.tar.bz2 norsk-urskog-main-06a3d9eecfeaed4a0fa144616ef0be02746b06f9.zip |
Add info about concerts.
Diffstat (limited to 'blog/_layouts/concert.html')
-rw-r--r-- | blog/_layouts/concert.html | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/blog/_layouts/concert.html b/blog/_layouts/concert.html new file mode 100644 index 0000000..7574119 --- /dev/null +++ b/blog/_layouts/concert.html @@ -0,0 +1,22 @@ +--- +layout: default +--- + +<article class="concert"> + <header> + <div class="date"><date>{{ page.date | date: "%d/%m-%Y" }}</date> {{ page.venue }} ({{ page.city }})</div> + <div class="bands">{{ page.bands | join: ", " }}</div> + {% if page.comment %} + <div class="comment">{{ page.comment }}</div> + {% endif %} + {% if page.cc %} + <div class="cc">Inngang: {{ page.cc }}</div> + {% endif %} + {% if page.doors %} + <div class="doors">Dørene åpnes: {{ page.doors }}</div> + {% endif %} + </header> + <section class="concert-body"> + {{ content }} + </section> +</article> |