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