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