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-repositories.html

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