-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome_page.html
34 lines (25 loc) · 921 Bytes
/
home_page.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
34
{% extends 'base.html' %}
{% load cloudinary %}
{% block main_content %}
<figure class="hero-img large-spacing">
<a href="/music/im-you/"><img src="{% cloudinary_url 'hth_iu_photo_banner.jpg' %}" alt="Press photo banner image"></a>
</figure>
<section id="news" class="container">
<h2><a href="{% url 'post_list' %}">News</a></h2>
{% include 'news/_post_highlight.html' %}
</section>
<section id="music" class="container">
<h2><a href="{% url 'release_list' %}">Music</a></h2>
{% include 'music/_release_highlight.html' %}
</section>
<section id="video" class="container">
<h2><a href="{% url 'video_list' %}">Video</a></h2>
{% include 'music/_video_highlight.html' %}
</section>
<section id="shows" class="container">
<h2><a href="{% url 'gig_list' %}">Live</a></h2>
<div class="gig-list">
{% include 'shows/_gig_upcoming.html' %}
</div>
</section>
{% endblock %}