]> git.ipfire.org Git - ipfire.org.git/blob - src/templates/fireinfo/driver.html
fireinfo/driver: finished the page
[ipfire.org.git] / src / templates / fireinfo / driver.html
1 {% extends "../base.html" %}
2
3 {% block title %}{{ driver }}{% end block %}
4
5 {% block container %}
6 <section class="hero is-primary">
7 <div class="hero-body">
8 <div class="container">
9 <nav class="breadcrumb is-medium" aria-label="breadcrumbs">
10 <ul>
11 <li>
12 <a href="https://ipfire.org/">
13 Home
14 </a>
15 </li>
16 <li>
17 <a href="/">
18 {{ _("Fireinfo") }}
19 </a>
20 </li>
21 <li>
22 <a href="#">
23 {{ _("Drivers") }}
24 </a>
25 </li>
26 <li class="is-active">
27 <a href="#">
28 {{ driver }}
29 </a>
30 </li>
31 </ul>
32 </nav>
33
34 <h2 class="title is-2">{{ _("All known devices run by %s") % driver }}</h2>
35 </div>
36 </div>
37 </section>
38
39 <section class="section">
40 <div class="container">
41 {% module FireinfoDeviceTable(driver_map) %}
42 </div>
43 </section>
44 {% end block %}