Marc Bouvier (Baldir)

Coder avec intention au service des humains et de la planète


Ajout d’une navigation

Ajoutons une navigation pour les pages statiques qui ne sont pas des articles de blog.

_includes/layout.html

             max-width: 100%;
             height: auto;
         }
+
+        nav ul{
+            display: flex;
+            justify-content: space-around;
+        }
+        nav ul li{
+            list-style: none;
+        }
     </style>
     <link href="/public/css/a11y-light.min.css" rel="stylesheet"/>
 </head>
 <body>
 <header>
-    <h1>{{title}}</h1>
+    <h1><a href="/">{{title}}</a></h1>
+    <nav>
+        <ul>
+            <li>
+                <a href="/blog">Blog posts</a>
+            </li>
+            <li>
+                <a href="/about">About</a>
+            </li>
+            <li>
+                <a href="/making-of">Making of</a>
+            </li>
+        </ul>
+    </nav>
 </header>
 <main>