]> git.ipfire.org Git - ipfire.org.git/commitdiff
docs/recent-changes: added a hero unit
authorRico Hoppe <rico.hoppe@ipfire.org>
Wed, 24 Jan 2024 15:42:19 +0000 (15:42 +0000)
committerRico Hoppe <rico.hoppe@ipfire.org>
Wed, 24 Jan 2024 15:42:19 +0000 (15:42 +0000)
src/templates/docs/recent-changes.html

index 27a179fa7d62636c954434c79c951c4b59cbc71c..46a2d4d1e29d817bc46ac49777b688d84b3e86d4 100644 (file)
@@ -2,13 +2,32 @@
 
 {% block title %}{{ _("Recent Changes") }}{% end block %}
 
-{% block content %}
-       <div class="container">
-               <section class="section">
-                       <h1 class="title">{{ _("Recent Changes") }}</h1>
+{% block container %}
+       <section class="hero is-light">
+               <div class="hero-body">
+                       <div class="container">
+                               <nav class="breadcrumb" aria-label="breadcrumbs">
+                                       <ul>
+                                               <li>
+                                                       <a href="/">{{ _("Home") }}</a>
+                                               </li>
+                                               <li>
+                                                       <a href="/docs">{{ _("Documentation") }}</a>
+                                               </li>
+                                               <li class="is-active">
+                                                       <a href="#" aria-current="page">{{ _("Recent Changes") }}</a>
+                                               </li>
+                                       </ul>
+                               </nav>
 
+                               <h1 class="title">{{ _("Recent Changes") }}</h1>
+                       </div>
+               </div>
+       </section>
 
+       <section class="section">
+               <div class="container">
                        {% module DocsList(recent_changes, show_changes=True) %}
-               </section>
-       </div>
+               </div>
+       </section>
 {% end block %}