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;"> 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 %}