forked from PodcasterDJ/Podcaster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.html
167 lines (156 loc) · 6.41 KB
/
footer.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
{% load static %}
{% load i18n %}
{% load l10n %}
<!-- Newsletter -->
<div class="newsletter text-white">
<div class="parallax_background parallax-window" data-parallax="scroll"
data-image-src="" data-speed="0.8"></div>
<div class="container">
<div class="row">
<div class="col">
<div class="section_title text-white text-center">
<h1>{% trans "Join my Newsletter" %}</h1>
</div>
<div class="newsletter_text text-center">
<p>{% trans "Get latest posts, podcasts and giveaways informations." %}</p>
</div>
</div>
</div>
<div class="row newsletter_row">
<div class="col-lg-10 offset-lg-1">
<div class="newsletter_form_container">
<form enctype="multipart/form-data" method="POST" action="{% url 'joinnewsletter:joinnewsletter' %}"
class="newsletter_form d-flex flex-md-row flex-column align-items-md-start align-items-center justify-content-md-between justify-content-start"
id="newsletter_form">
{% csrf_token %}
<input id="id_email_field" name="email" type="email"
placeholder="Email" aria-label="email" class="form-control newsletter_input" required="required">
<button class="btn btn-primary newsletter_button button_fill" id="id_submit_home" name="submit" value="Subscribe"
type="submit">{% trans "subscribe" %}!</button>
</form>
</div>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="row footer_logo_row">
<div class="col d-flex flex-row align-items-center justify-content-center">
<div class="logo">
<a href="/">{% for el in page_description %}{% if el.name == 'title' %}{{el.content}}{% endif %}{% endfor %}</a>
</div>
</div>
</div>
<div class="row footer_content_row">
<!-- Latest Podcasts -->
<div class="col-lg-3">
<div class="footer_title">{% trans "Latest Podcasts" %}</div>
<div class="latest_container">
{% for episode in latest_episodes %}
<!-- Latest -->
<div class="latest">
<div class="latest_title_container d-flex flex-row align-items-start justify-content-start">
<a href="episode.html">
<div class="d-flex flex-row align-items-start justify-content-start">
<div class="latest_play">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Capa_1" x="0px" y="0px" width="512px" height="512px" viewBox="0 0 714 714" style="enable-background:new 0 0 714 714;" xml:space="preserve">
<g id="Play">
<path d="M641.045,318.521L102,0C73.822,0,51,22.822,51,51v612c0,28.178,22.822,51,51,51l539.045-318.521 C654.661,387.422,663,372.81,663,357C663,341.19,654.661,326.579,641.045,318.521z M153,565.386V148.614L505.665,357 L153,565.386z" fill="#FFFFFF"/>
</g>
</svg>
</div>
<div class="latest_title_content">
<div class="latest_title">{{episode.title}}</div>
</div>
</div>
</a>
</div>
<div class="latest_episode_info">
<ul class="d-flex flex-row align-items-start justify-content-start">
<li>{{episode.updated}}</li>
</ul>
</div>
</div>
{% endfor %}
</div>
</div>
<!-- Latest Posts -->
<div class="col-lg-3">
<div class="footer_title">{% trans "Latest Posts" %}</div>
<div class="latest_container">
{% for post in latest_posts %}
<!-- Latest -->
<div class="latest">
<div class="latest_title_container d-flex flex-row align-items-start justify-content-start">
<a href="episode.html">
<div class="d-flex flex-row align-items-start justify-content-start">
<div class="latest_play">
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Capa_1" x="0px" y="0px" width="512px" height="512px" viewBox="0 0 714 714" style="enable-background:new 0 0 714 714;" xml:space="preserve">
<g id="Play">
<path d="M641.045,318.521L102,0C73.822,0,51,22.822,51,51v612c0,28.178,22.822,51,51,51l539.045-318.521 C654.661,387.422,663,372.81,663,357C663,341.19,654.661,326.579,641.045,318.521z M153,565.386V148.614L505.665,357 L153,565.386z" fill="#FFFFFF"/>
</g>
</svg>
</div>
<div class="latest_title_content">
<div class="latest_title">{{ post.title }}</div>
</div>
</div>
</a>
</div>
<div class="latest_episode_info">
<ul class="d-flex flex-row align-items-start justify-content-start">
<li>{{ post.publish }}</li>
</ul>
</div>
</div>
{% comment %} {% for episode in latest_posts %}{% endfor %} {% endcomment %}
{% endfor %}
</div>
</div>
<!-- Tags -->
<div class="col-lg-3">
<div class="footer_title">{% trans "Tags" %}</div>
<div class="footer_list">
{% for tag in tags %}
<div><div><a href="#">{{tag.title}}</a></div></div>
{% endfor %}
</div>
</div>
<!-- categories -->
<div class="col-lg-3">
<div class="footer_title">{% trans "Categories" %}</div>
<div class="footer_list">
{% for category in categories %}
<div><div><a href="#">{{category.title}}</a></div></div>
{% endfor %}
</div>
</div>
{% comment %} <!-- Gallery -->
<div class="col-lg-3">
<div class="footer_title">Instagram</div>
<div class="gallery d-flex flex-row align-items-start justify-content-start flex-wrap">
<!-- Gallery Item -->
<div class="gallery_item">
<a class="colorbox" ><img src="" alt=""></a>
</div>
</div>
</div> {% endcomment %}
</div>
<div class="row footer_social_row">
<div class="col">
<div class="footer_social">
<ul class="d-flex flex-row align-items-center justify-content-center">
{% for el in social_media %}
<li><a href="{{el.link}}"><i class="fa fa-{{el.name}}" aria-hidden="true"></i></a></li>
{% endfor %}
</ul>
</div>
</div>
</div>
</br></br><!-- Link back to Colorlib can't be removed. Template is licensed under CC BY 3.0. -->
This page is openSource <i class="fa fa-heart-o" aria-hidden="true"></i> and available on GitHub by <a href="https://github.com/hvitis" target="_blank">Hvitis</a> | Template made by Colorlib
<!-- Link back to Colorlib can't be removed. Template is licensed under CC BY 3.0. -->
</div>
</footer>