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.06 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
<nav id="repo-nav" class="navbar">
10
<ul id="repo-tabs">
11
<li><a href="?">Overview</a></li>
12
<li><a href="?action=repositories">Repositories ({{ user.repositories | length }})</a></li>
13
<li><a href="?action=followers">Followers ({{ user.followers | length }})</a></li>
14
</ul>
15
<x-buttonbox>
16
{% if loggedInUser != user.username and loggedInUser %}
17
<form action="?action=follow" method="POST">
18
<button type="submit">
19
<iconify-icon icon="mdi:eye"></iconify-icon>
20
{% if relationship %}Unfollow{% else %}Follow{% endif %}
21
</button>
22
</form>
23
{% endif %}
24
</x-buttonbox>
25
</nav>
26
{% endblock %}
27
28
{% block scripts %}
29
<script src="/static/marquee.js"></script>
30
{% endblock %}
31
32