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