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

 search.html

View raw Download
text/html • 1.33 kiB
HTML document, ASCII text
        
            
1
{% extends "default.html" %}
2
{% block title %}
3
{% trans %}Search repositories{% endtrans %}
4
{% endblock %}
5
6
{% block title %}
7
{% trans username=username, repository=repository %}Repository listing: {{ query }}{% endtrans %}
8
{% endblock %}
9
{% block content %}
10
<x-vbox>
11
<x-frame style="--width: 896px;" class="flexible-space">
12
<ul style="list-style: none;" class="noindent">
13
{% for result in results %}
14
<li>
15
<article class="card" style="flex: 0 1 auto;">
16
<section class="card-main">
17
<a href="{{ result.route }}"><h3>{{ result.name }}</h3></a>
18
{% if result.info %}
19
<p>{{ result.info }}</p>
20
{% endif %}
21
{% if result.url %}
22
<p>
23
Homepage: <a href="{{ result.url }}">{{ result.url }}</a>
24
</p>
25
{% endif %}
26
</section>
27
</article>
28
</li>
29
{% endfor %}
30
</ul>
31
{% include "pagination.html" %}
32
</x-frame>
33
</x-vbox>
34
{% endblock %}