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-thread.html

View raw Download
text/plain • 464 B
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
{% set parent = Post.query.filter_by(repo=repoData, number=postID).first() %}
10
{% set post = parent %}
11
{% set level = 0 %}
12
{% include "post.html" %}
13
</x-vbox>
14
</x-frame>
15
</x-vbox>
16
{% endblock %}