]> git.gir.st - subscriptionfeed.git/blob - app/invidious/templates/channel.html.j2
use flexbox for card component
[subscriptionfeed.git] / app / invidious / templates / channel.html.j2
1 <!DOCTYPE html>
2 <title>{{ title | e }}</title>
3 <link rel="shortcut icon" href='data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 300" fill="%23fff"><circle r="150" cx="150" cy="150" fill="%23f00"/><path d="m120 97v106l93-53"/></svg>'>
4 <link rel="stylesheet" href="/static/style.css">
5
6 {% import 'macros.imp.j2' as macros with context %}
7
8 {{ macros.headerbar(search_query=query) }}
9
10 {% include 'messages.inc.j2' %}
11
12 <article>
13 <h1>{{ title | e }}</h1>
14 <div class="cards">
15 {% for row in rows %}
16 {% call macros.card(row.videoId, row.title, row.publishedText) %}
17 {{ macros.infobar_subscriptions(row.videoId, row.authorId, row.author) }}
18 {% endcall %}
19 {% else %}
20 no more results.
21 {% endfor %}
22 </div>
23 </article>
24
25 {% if page > 1 %}
26 <a href="?page={{ page-1 }}">previous</a> |
27 {% endif %}
28 <a href="?page={{ page+1 }}">next</a>
29
30 <hr>
31 This page is proxied through invidio.us.
Imprint / Impressum