-
Notifications
You must be signed in to change notification settings - Fork 16
/
cpus.html
29 lines (28 loc) · 1001 Bytes
/
cpus.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
---
layout: simple-page
title: Supported CPUs
subtitle: RIOT has a hardware abstraction layer, which enables us to support many CPUs easily.
---
<!-- ======= Board Section ======= -->
<section id="cpus">
<div class="container">
<input class="form-control" name="cpuSearchInput" type="text" placeholder="Search..">
<hr>
<div id="cpuList">
<div class="row row-cols-1 row-cols-md-4 g-4">
{% for cpu in site.data.riot_cpus %}
<div class="col">
<a href="{{ cpu.apiurl }}" target="_blank">
<div class="card shadow rounded btn-primary h-100">
<div class="card-body align-middle">
<h5 class="text-center">{{ cpu.name }}</h5>
</div>
</div>
</a>
</div>
{% endfor %}
</div>
</div>
</div>
</section><!-- End Board Section -->
</main><!-- End #main -->