repo-forum-thread.html
    
    HTML document, ASCII text
        
            1
            {% extends "repo.html" %} 
        
            2
            {% set active_page = "forum" %} 
        
            3
             
        
            4
            {% block title %} 
        
            5
                {% trans subject=parent.subject, username=username, repository=repository %}{{ subject }} in {{ username }}/{{ repository }}{% endtrans %} 
        
            6
            {% endblock %} 
        
            7
            {% block content %} 
        
            8
            <script src="/static/voting.js"></script> 
        
            9
            <x-vbox style="--gap-box: 0;"> 
        
            10
                <x-buttonbox id="forum-banner" class="box-center"> 
        
            11
                    {% if not parent.root %} 
        
            12
                        <a href="." class="button icon-button"> 
        
            13
                            <iconify-icon icon="mdi:arrow-left"></iconify-icon> 
        
            14
                        </a> 
        
            15
                        <h1>{{ parent.subject }}</h1> 
        
            16
                    {% else %} 
        
            17
                        <a href="." class="button icon-button"> 
        
            18
                            <iconify-icon icon="mdi:arrow-left"></iconify-icon> 
        
            19
                        </a> 
        
            20
                        <h1>{{ parent.root.subject }}</h1> 
        
            21
                    {% endif %} 
        
            22
                </x-buttonbox> 
        
            23
                <x-frame style="--width: 896px;" class="flexible-space"> 
        
            24
                    <x-vbox> 
        
            25
                        {% set post = parent %} 
        
            26
                        {% set level = 0 %} 
        
            27
                        {% include "post.html" %} 
        
            28
                    </x-vbox> 
        
            29
                </x-frame> 
        
            30
            </x-vbox> 
        
            31
            {% endblock %} 
        
            32