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 • 839 B
HTML document, ASCII text
        
            
1
{% extends "user-profile.html" %}
2
{% set active_page = "repositories" %}
3
4
{% block content %}
5
<x-frame style="--width: 768px;">
6
<article class="card" style="flex: 0 1 auto;">
7
<section class="card-main">
8
<ul style="list-style: none;" class="noindent">
9
{% for repo in repos %}
10
<li>
11
<article>
12
<a href="{{ repo.route }}"><h3>{{ repo.name }}</h3></a>
13
{% if repo.info %}
14
<p>{{ repo.info }}</p>
15
{% endif %}
16
</article>
17
</li>
18
{% endfor %}
19
</ul>
20
</section>
21
</article>
22
</x-frame>
23
{% endblock %}