diff options
Diffstat (limited to 'templates/includes')
-rw-r--r-- | templates/includes/layout.gohtml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/templates/includes/layout.gohtml b/templates/includes/layout.gohtml index 03cf430..0b3b69b 100644 --- a/templates/includes/layout.gohtml +++ b/templates/includes/layout.gohtml @@ -6,15 +6,17 @@ <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>SendSafe</title> + <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/picnic" /> + <link rel="stylesheet" href="/css/fontello.css" /> <link rel="stylesheet" href="/css/index.css" /> <script src="https://unpkg.com/turbolinks/dist/turbolinks.js" crossorigin="anonymous"></script> <script src="https://unpkg.com/htmx.org@1.3.1" crossorigin="anonymous"></script> </head> <body> -<header> - <a id="header-logo" href="/"></> SendSafe</a> -</header> +<nav> + <a id="header-logo" class="brand" href="/"></> SendSafe</a> +</nav> {{template "content" .}} </body> </html> |