-
Notifications
You must be signed in to change notification settings - Fork 0
/
films.html
71 lines (63 loc) · 1.69 KB
/
films.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
---
layout: default
---
<h3 class="all-films">All Films / List</h3>
<p class="toggle-buttons">
<i class="button selected fas fa-list"></i>
<a href="/films-posters">
<i class="button fas fa-th"></i>
</a>
</p>
<hr />
<form action="/search.html" method="get">
<input
type="text"
id="search-box"
name="query"
class="form-control input-lg",
placeholder="search: type and then hit enter"
>
</form>
<!-- Mobile List -->
<table class="table table-striped mobile-list">
<thead>
<tr>
<th>Title</th>
<th>Year</th>
</tr>
</thead>
{% for film in site.films %}
<tr>
<td><a href="{{film.id}}">{{film.title}}</a></td>
<td>{{film.released | date: '%Y'}}</td>
</tr>
{% endfor %}
</table>
<!-- Desktop List -->
<table class="table table-striped desktop-list">
<thead>
<tr>
<th>Title</th>
<th>Released</th>
<th>Added</th>
<th class="text-center">Audio</th>
<th class="text-center">Info</th>
</tr>
</thead>
{% for film in site.films %}
<tr>
<td><a href="{{film.id}}">{{film.title}}</a></td>
<td>{{film.released | date: '%-d %b %Y'}}</td>
<td>{{film.added | date: '%-d %b %Y'}}</td>
<td class="text-center">
<a href="{{site.assets}}/audios/{{film.slug}}.mp3">mp3</a>
</td>
<td class="text-center">
<a href="https://www.themoviedb.org/movie/{{film.tmdb-id}}" target="_blank">
tmdb
</a>
</td>
</tr>
{% endfor %}
</table>
<h4 class="text-center">New titles are added weekly! Please <a href="mailto:request@audiofilms.net?subject=I've got an idea for an AudioFilm">send us a request</a> if you don't see your favorite movie listed.</h4>