diff options
author | Alexander Kiryukhin <a.kiryukhin@mail.ru> | 2021-03-21 21:44:19 +0300 |
---|---|---|
committer | Alexander Kiryukhin <a.kiryukhin@mail.ru> | 2021-03-21 21:44:19 +0300 |
commit | c994959f736206aacec8e9933d62588b9cb5b0c5 (patch) | |
tree | a65a3061df93984ecdb0911c4d0582c353ca5035 /templates/includes/layout.gohtml | |
parent | 37c250d538893ff8178bd9c9e4dde225a991ce76 (diff) |
Diffstat (limited to 'templates/includes/layout.gohtml')
-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> |