Important information: Google announced that, from September 2026, Android devices will require ALL apps to be signed by Google, effectively leading to an iOS situation. Value your right to a computer that does what you want; do not tolerate this monopolistic practice! Contact me if you don't understand why it is bad. Click to learn more.

 repo-forum.html

View raw Download
text/html • 865 B
HTML document, ASCII text
        
            
1
{% extends "repo.html" %}
2
{% block title %}
3
Forum of {{ username }}/{{ repository }}
4
{% endblock %}
5
{% block content %}
6
<x-vbox>
7
<x-frame style="--width: 896px;" class="flexible-space">
8
<x-vbox>
9
{% for post in Post.query.filter_by(repo=repoData, parent=none) %}
10
<article class="card card-horizontal">
11
<figure class="branch-icon">
12
<iconify-icon icon="mdi:note"></iconify-icon>
13
</figure>
14
<section class="card-main">
15
<h3><a href="{{ post.number }}">{{ post.subject }}</a></h3>
16
<p><a href="/{{ post.owner.username }}">{{ post.owner.username }}</a></p>
17
</section>
18
</article>
19
{% endfor %}
20
</x-vbox>
21
</x-frame>
22
</x-vbox>
23
{% endblock %}
24