By using this site, you agree to have cookies stored on your device, strictly for functional purposes, such as storing your session and preferences.

Dismiss

 user-profile.html

View raw Download
text/html • 1.23 kiB
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
Profile
13
</a>
14
</li>
15
<li class="{% if active_page == 'repositories' %}selected{% endif %}">
16
<a href="?action=repositories">
17
Repositories
18
</a>
19
</li>
20
<li class="{% if active_page == 'followers' %}selected{% endif %}">
21
<a href="?action=followers">
22
Followers
23
</a>
24
</li>
25
<li class="{% if active_page == 'following' %}selected{% endif %}">
26
<a href="?action=follows">
27
Following
28
</a>
29
</li>
30
</ul>
31
32
<div class="flexible-space"></div>
33
34
{% if logged_in_user %}
35
<form action="?action=follow" method="POST">
36
<button type="submit">
37
Follow
38
</button>
39
</form>
40
{% endif %}
41
{% endblock %}
42
43
{% block scripts %}
44
<script src="/static/marquee.js"></script>
45
{% endblock %}
46