repo-forum.html
HTML document, ASCII text
1{% extends "repo.html" %} 2{% block title %} 3Forum 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