From 73ee4f6f093ae638ab337b943a86a5e61bca4633 Mon Sep 17 00:00:00 2001 From: f-dinucci Date: Mon, 30 May 2022 22:45:02 +0200 Subject: [PATCH] refactor[layouts]: reorganize head and header according to standards According to latest HTML standards, head is for metadata, header for headers/other content --- layouts/partials/head.html | 27 +++++++++++++++++++++++++++ layouts/partials/header.html | 22 +--------------------- 2 files changed, 28 insertions(+), 21 deletions(-) diff --git a/layouts/partials/head.html b/layouts/partials/head.html index e69de29..b6deb51 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + {{.Title}} + diff --git a/layouts/partials/header.html b/layouts/partials/header.html index 36708cc..6c00900 100644 --- a/layouts/partials/header.html +++ b/layouts/partials/header.html @@ -1,21 +1 @@ - - - - - - - - - - - - - - - - +{{ partial "navbar.html" . }}