HTML document, ASCII text
        
            1
            {% extends "user-profile.html" %} 
        
            2
            {% set active_page = "repositories" %} 
        
            3
            {% block content %} 
        
            5
                <x-frame style="--width: 768px;"> 
        
            6
                    <article class="card" style="flex: 0 1 auto;"> 
        
            7
                        <section class="card-main"> 
        
            8
                            <ul style="list-style: none;" class="noindent"> 
        
            9
                                {% if repos %} 
        
            10
                                    {% for repo in repos %} 
        
            11
                                        <li> 
        
            12
                                            <article> 
        
            13
                                                <a href="{{ repo.route }}"><h3>{{ repo.name }}</h3></a> 
        
            14
                                                {% if repo.info %} 
        
            15
                                                    <p>{{ repo.info }}</p> 
        
            16
                                                {% endif %} 
        
            17
                                            </article> 
        
            18
                                        </li> 
        
            19
                                    {% endfor %} 
        
            20
                                {% else %} 
        
            21
                                    {% trans %}This user doesn't own any repositories.{% endtrans %} 
        
            22
                                {% endif %} 
        
            23
                            </ul> 
        
            24
                        </section> 
        
            25
                    </article> 
        
            26
                </x-frame> 
        
            27
            {% endblock %}