-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrelease_list.html
33 lines (27 loc) · 1.01 KB
/
release_list.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{% extends "base.html" %}
{% block title %}Music | {{ block.super }}{% endblock %}
{% block main_class %}navigation-page{% endblock %}
{% block main_content %}
<article class="container">
<h1 class="container-header">Music</h1>
{% for release in release_list|slice:":1" %}
{% include "music/_release_highlight.html" %}
{% endfor %}
<div class="content-gallery">
{% for release in release_list|slice:"1:" %}
<article class="content release release-preview">
{% include "music/_release_cover.html" %}
<header class="content-header">
<h3 class="content-title">
<a href="{{ release.get_absolute_url }}">{{ release.title }}</a>
</h3>
<p class="content-subtitle">{{ release.date|date:"M Y" }}</p>
</header>
</article>
{% endfor %}
</div>
<div class="container-footer">
<a href="{% url 'song_list' %}">All songs and lyrics</a>
</div>
</article>
{% endblock %}