]> git.ipfire.org Git - ipfire.org.git/commitdiff
fireinfo/driver: finished the page
authorRico Hoppe <rico.hoppe@ipfire.org>
Sat, 21 Oct 2023 17:55:35 +0000 (17:55 +0000)
committerRico Hoppe <rico.hoppe@ipfire.org>
Sat, 21 Oct 2023 17:55:35 +0000 (17:55 +0000)
src/templates/fireinfo/driver.html

index c9f4bf2e2e7e24ec48ef62cc8661c2289dcb87c3..6daba7f4f48d7e2637a16f3492a6db3673a3f7be 100644 (file)
@@ -3,17 +3,42 @@
 {% block title %}{{ driver }}{% end block %}
 
 {% block container %}
-       <section class="section">
-               <div class="container">
-                       <h1 class="title is-1">{{ driver }}</h1>
+       <section class="hero is-primary">
+               <div class="hero-body">
+                       <div class="container">
+                               <nav class="breadcrumb is-medium" aria-label="breadcrumbs">
+                                       <ul>
+                                               <li>
+                                                       <a href="https://ipfire.org/">
+                                                               Home
+                                                       </a>
+                                               </li>
+                                               <li>
+                                                       <a href="/">
+                                                               {{ _("Fireinfo") }}
+                                                       </a>
+                                               </li>
+                                               <li>
+                                                       <a href="#">
+                                                               {{ _("Drivers") }}
+                                                       </a>
+                                               </li>
+                                               <li class="is-active">
+                                                       <a href="#">
+                                                               {{ driver }}
+                                                       </a>
+                                               </li>
+                                       </ul>
+                               </nav>
 
-                       <p>
-                               {{ _("All known devices run by %s") % driver }}
-                       </p>
+                               <h2 class="title is-2">{{ _("All known devices run by %s") % driver }}</h2>
+                       </div>
                </div>
        </section>
 
-       <div class="container">
-               {% module FireinfoDeviceTable(driver_map) %}
-       </div>
+       <section class="section">
+               <div class="container">
+                       {% module FireinfoDeviceTable(driver_map) %}
+               </div>
+       </section>
 {% end block %}