HTML document, ASCII text
        
            1
            {% extends "default.html" %} 
        
            2
            {% block title %} 
        
            3
                {{ user.username }} 
        
            4
            {% endblock %} 
        
            5
            {% block breadcrumbs %} 
        
            6
                <li><a href="/{{ user.username }}">{{ user.username }}</a></li> 
        
            7
            {% endblock %} 
        
            8
            {% block nav %} 
        
            9
                <ul id="repo-tabs"> 
        
            10
                    <li class="{% if active_page == 'profile' %}selected{% endif %}"> 
        
            11
                        <a href="?"> 
        
            12
                            {% trans %}Profile{% endtrans %} 
        
            13
                        </a> 
        
            14
                    </li> 
        
            15
                    <li class="{% if active_page == 'repositories' %}selected{% endif %}"> 
        
            16
                        <a href="?action=repositories"> 
        
            17
                            {% trans %}Repositories{% endtrans %} 
        
            18
                        </a> 
        
            19
                    </li> 
        
            20
                    <li class="{% if active_page == 'followers' %}selected{% endif %}"> 
        
            21
                        <a href="?action=followers"> 
        
            22
                            {% trans %}Followers{% endtrans %} 
        
            23
                        </a> 
        
            24
                    </li> 
        
            25
                    <li class="{% if active_page == 'following' %}selected{% endif %}"> 
        
            26
                        <a href="?action=follows"> 
        
            27
                            {% trans %}Following{% endtrans %} 
        
            28
                        </a> 
        
            29
                    </li> 
        
            30
                </ul> 
        
            31
                <div class="flexible-space"></div> 
        
            33
                {% if logged_in_user and logged_in_user != user.username %} 
        
            35
                    <form action="?action=follow" method="POST"> 
        
            36
                        <button type="submit"> 
        
            37
                            {% trans %}Follow{% endtrans %} 
        
            38
                        </button> 
        
            39
                    </form> 
        
            40
                {% endif %} 
        
            41
            {% endblock %} 
        
            42
            {% block scripts %} 
        
            44
                <script src="/static/marquee.js"></script> 
        
            45
            {% endblock %} 
        
            46