meta_ [name_ "description", content_ "width=device-width"]
       link_ [rel_ "stylesheet", href_ $ safeStylingLink theme]
     body_ $ do
-      nav
       div_ [role_ "main"] contents
+      nav
 
 navigation :: (MonadIO m) => Maybe Theme -> m (Html ())
-navigation theme = blogList theme >>= pure . div_ [role_ "navigation"] . ul_ [class_ "blog-links"]
+navigation theme = do
+  blogListItems <- blogList theme >>= pure . ul_ [class_ "blog-links"]
+  pure $ div_ [role_ "navigation"] $ do
+    h2_ "Articles:"
+    blogListItems
 
 blogList :: (MonadIO m) => Maybe Theme -> m (Html ())
 blogList theme = liftIO $ getDirectoryContents staticPath >>= pure . foldMap (blogListItem theme) . filter (T.isSuffixOf markdownExtension) . fmap T.pack
 
 
 import Clay
 import Data.Monoid
-import Prelude hiding (rem)
+import Prelude hiding (div, rem)
 
 type ColorAction = Float -> Color -> Color
 
   codeStyle
   headerStyle
   linkStyle colorAction themeColor
+  navigationStyle
 
 bodyStyle :: ColorAction -> Color -> Css
 bodyStyle action themeColor = body ? do
   pre ? do
     padding (rem 0.5) (rem 0.5) (rem 0.5) (rem 0.5)
     overflowX scroll
+
+navigationStyle :: Css
+navigationStyle = do
+  div # ("role" @= "navigation") |> h2 ? smallHeaderStyle
+  where
+    smallHeaderStyle = do
+      fontSize $ rem 1.414
+      paddingBottom $ rem 0
+      textAlign inherit