summaryrefslogtreecommitdiff
path: root/templates/includes/layout.gohtml
blob: 0b3b69bb4412adfbfe451aced969ddfdc658e670 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <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>
<nav>
    <a id="header-logo"  class="brand" href="/"></> SendSafe</a>
</nav>
{{template "content" .}}
</body>
</html>