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

index 5e067d9b84fb6942f1d7da562ea48f412fc77752..c9f4bf2e2e7e24ec48ef62cc8661c2289dcb87c3 100644 (file)
@@ -3,25 +3,17 @@
 {% block title %}{{ driver }}{% end block %}
 
 {% block container %}
-       <section>
+       <section class="section">
                <div class="container">
-                       <div class="row">
-                               <div class="col-12">
-                                       <h1>{{ driver }}</h1>
+                       <h1 class="title is-1">{{ driver }}</h1>
 
-                                       <p>
-                                               {{ _("All known devices run by %s") % driver }}
-                                       </p>
-                               </div>
-                       </div>
+                       <p>
+                               {{ _("All known devices run by %s") % driver }}
+                       </p>
                </div>
        </section>
 
        <div class="container">
-               <div class="row">
-                       <div class="col-12">
-                               {% module FireinfoDeviceTable(driver_map) %}
-                       </div>
-               </div>
+               {% module FireinfoDeviceTable(driver_map) %}
        </div>
 {% end block %}