-
Notifications
You must be signed in to change notification settings - Fork 16
/
drivers.html
50 lines (48 loc) · 2.12 KB
/
drivers.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
---
layout: simple-page
title: Supported Drivers
subtitle: RIOT has a hardware abstraction layer, which enables us to support many drivers easily.
---
<main>
<!-- ======= Driver Section ======= -->
<section id="drivers">
<div class="container">
<input class="form-control" name="driverSearchInput" type="text" placeholder="Search..">
<hr>
<div id="driverList">
<div class="row row-cols-1 row-cols-md-4 g-4">
{% for category in site.data.riot_drivers_cats %}
<div class="col accordion accordion-flush" id="accordionFlushExample{{ category.group }}">
<div class="accordion-item">
<h2 class="accordion-header exclude btn-primary shadow rounded"
id="flush-headingOne{{ category.group }}">
<button class="accordion-button collapsed exclude" type="button"
data-bs-toggle="collapse" data-bs-target="#flush-collapseOne{{ category.group }}"
aria-expanded="false" aria-controls="flush-collapseOne{{ category.group }}">
<h5 class="exclude ft-miso text-start w-100">
{{ category["name"] }}
<i class="bi bi-chevron-down"></i>
</h5>
</button>
</h2>
<div id="flush-collapseOne{{ category.group }}" class="accordion-collapse collapse"
aria-labelledby="flush-headingOne{{ category.group }}"
data-bs-parent="#accordionFlushExample{{ category.group }}">
<div class="accordion-body">
<ul class="list-group">
{% for driver in site.data.riot_drivers %}
{% if driver.parent == category.group %}
<li class="list-group-item"><a href="{{ driver.apiurl }}" target="_blank">{{ driver.name }}</a></li>
{% endif %}
{% endfor %}
</ul>
</div>
</div>
</div>
</div>
{% endfor %}
</div>
</div>
</div>
</section><!-- End Driver Section -->
</main><!-- End #main -->