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 • 2.53 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
{% if active_page == 'profile' %}
13
<iconify-icon icon="mdi:account"></iconify-icon>
14
{% else %}
15
<iconify-icon icon="mdi:account-outline"></iconify-icon>
16
{% endif %}
17
Profile
18
</a>
19
</li>
20
<li class="{% if active_page == 'repositories' %}selected{% endif %}">
21
<a href="?action=repositories">
22
{% if active_page == 'repositories' %}
23
<iconify-icon icon="mdi:folder"></iconify-icon>
24
{% else %}
25
<iconify-icon icon="mdi:folder-outline"></iconify-icon>
26
{% endif %}
27
Repos
28
</a>
29
</li>
30
<li class="{% if active_page == 'followers' %}selected{% endif %}">
31
<a href="?action=followers">
32
{% if active_page == 'followers' %}
33
<iconify-icon icon="mdi:account-arrow-left"></iconify-icon>
34
{% else %}
35
<iconify-icon icon="mdi:account-arrow-left-outline"></iconify-icon>
36
{% endif %}
37
Followers
38
</a>
39
</li>
40
<li class="{% if active_page == 'following' %}selected{% endif %}">
41
<a href="?action=follows">
42
{% if active_page == 'following' %}
43
<iconify-icon icon="mdi:account-arrow-right"></iconify-icon>
44
{% else %}
45
<iconify-icon icon="mdi:account-arrow-right-outline"></iconify-icon>
46
{% endif %}
47
Following
48
</a>
49
</li>
50
</ul>
51
<!-- <x-buttonbox>-->
52
<!-- {% if logged_in_user != user.username and logged_in_user %}-->
53
<!-- <form action="?action=follow" method="POST">-->
54
<!-- <button type="submit">-->
55
<!-- <iconify-icon icon="mdi:eye"></iconify-icon>-->
56
<!-- {% if relationship %}Unfollow{% else %}Follow{% endif %}-->
57
<!-- </button>-->
58
<!-- </form>-->
59
<!-- {% endif %}-->
60
<!-- </x-buttonbox>-->
61
{% endblock %}
62
63
{% block scripts %}
64
<script src="/static/marquee.js"></script>
65
{% endblock %}
66