-
Notifications
You must be signed in to change notification settings - Fork 14
/
autils.html
128 lines (120 loc) · 5.28 KB
/
autils.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
---
layout: null
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="/resources/icons/avocado.ico">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@400;500;600;700;800;900&display=swap">
<link rel="stylesheet" href="/resources/css/autils.css"> <!-- Link to the external CSS file -->
<title>Autils</title>
</head>
<body>
<header>
<div class="left-header">
<a href="/">
<img src="/resources/logo/PNGs/full-colour.png" alt="Avocado Logo">
</a>
<h1 class="header-avocado">
<a href="/">Avocado</a>
</h1>
</div>
<div class="right-header">
<a href="https://github.com/avocado-framework/avocado/issues/new?assignees=&labels=bug&projects=&template=bug_report.md&title=">Report a bug</a>
<a href="https://forms.gle/sW1jMGaMLpwzn6nLA">Mailing list</a>
<a href="https://github.com/avocado-framework">
<img src="/resources/icons/github.svg" alt="GitHub">
</a>
</div>
</header>
<div class="subheader">
<div class="sub-logo-title">
<img src="/resources/icons/computer.svg" alt="Avocado-framework logo">
<h1 class="sub-avocado">Autils</h1>
</div>
</div>
<div class="maintable">
<main class="table" id="customers_table">
<section class="table__header">
<h1>Utility Libraries</h1>
<div class="input-group">
<input type="search" placeholder="Search Data...">
<img src="/resources/images/search.png" alt="">
</div>
</section>
<section class="table__body">
<table>
<thead>
<tr>
<th>Name <span class="icon-arrow">↑</span></th>
<th>Description <span class="icon-arrow">↑</span></th>
<th>Category <span class="icon-arrow">↑</span></th>
<th>Maintainer <span class="icon-arrow">↑</span></th>
<th>Supported Platforms <span class="icon-arrow">↑</span></th>
<th>Tests <span class="icon-arrow">↑</span></th>
<th>Remote <span class="icon-arrow">↑</span></th>
</tr>
</thead>
<tbody>
{% for item in site.data.autils.modules %}
<tr>
<td>{{ item.name }}</td>
<td>{{ item.description }}</td>
<td>
{% for category in item.categories %}
<p class="category {{ category }}">{{ category }}</p>
{% endfor %}
</td>
<td>
{% for maintainer in item.maintainers %}
<a href="mailto:{{ maintainer.email }}">
<img src="{{ maintainer.maintainer_image }}" alt="{{ maintainer.name }}">
{{ maintainer.name }}
</a><br>
{% endfor %}
</td>
<td>
{% for platform in item.supported_platforms %}
<p class="os {{ platform }}">{{ platform }}</p>
{% endfor %}
</td>
<td>
{% for test in item.tests %}
<strong>{{ test }}</strong><br>
{% endfor %}
</td>
<td>{{ item.remote | default: 'false' }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</section>
</main>
<script src="/resources/js/autils.js"></script>
</div>
<footer>
<div class="footer-header">Contact</div>
<div class="footer-text">
<a href="https://forms.gle/sW1jMGaMLpwzn6nLA">
<img src="/resources/icons/mail.svg" alt="Mail Icon">
Mailing List
</a>
</div>
<div class="footer-text">
<a href="https://github.com/avocado-framework/avocado/issues/new?assignees=&labels=bug&projects=&template=bug_report.md&title=">
<img src="/resources/icons/bug.svg" alt="Bug Icon">
Report a Bug
</a>
</div>
<div class="footer-text">
<a href="https://avocado-framework.readthedocs.io/en/latest/">
<img src="/resources/icons/documentation.svg" alt="Doc Icon">
Documentation
</a>
</div>
<div class="footer-copyright">Copyright © 2024 Red Hat Inc. and Avocado Community Contributors</div>
</footer>
</body>
</html>