roundabout,
created on Friday, 26 April 2024, 10:03:15 (1714125795),
received on Wednesday, 31 July 2024, 06:54:46 (1722408886)
Author identity: vlad <vlad.muntoiu@gmail.com>
e6324ee2a0a9029cb69afb10734d49efbea67c84
doc/internal/Style guide.md
templates/user-profile-repositories.html
@@ -3,25 +3,23 @@
{% block content %}
<x-frame style="--width: 768px;">
<article class="card" style="flex: 0 1 auto;">
<section class="card-main">
<ul style="list-style: none;" class="noindent">
{% if repos %}
{% for repo in repos %}
<li>
<article>
<a href="{{ repo.route }}"><h3>{{ repo.name }}</h3></a>
{% if repo.info %}
<p>{{ repo.info }}</p>
{% endif %}
</article>
</li>
{% endfor %}
{% else %}
{% trans %}This user doesn't own any repositories.{% endtrans %}
{% endif %}
</ul>
</section>
</article>
<ul style="list-style: none;" class="noindent">
{% if repos %}
{% for repo in repos %}
<li>
<article class="card" style="flex: 0 1 auto;">
<section class="card-main">
<a href="{{ repo.route }}"><h3>{{ repo.name }}</h3></a>
{% if repo.info %}
<p>{{ repo.info }}</p>
{% endif %}
</section>
</article>
</li>
{% endfor %}
{% else %}
{% trans %}This user doesn't own any repositories.{% endtrans %}
{% endif %}
</ul>
</x-frame>
{% endblock %}