diff options
author | Alexander Kiryukhin <a.kiryukhin@mail.ru> | 2021-03-18 02:06:42 +0300 |
---|---|---|
committer | Alexander Kiryukhin <a.kiryukhin@mail.ru> | 2021-03-18 02:06:42 +0300 |
commit | 6f31f35c7b38fbf63d7a0c9322458e0b75828495 (patch) | |
tree | 2fcb8cb31bb6604e85cf390dbc01f2e9a8b26ee7 /templates/includes |
Initial
Diffstat (limited to 'templates/includes')
-rw-r--r-- | templates/includes/layout.gohtml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/templates/includes/layout.gohtml b/templates/includes/layout.gohtml new file mode 100644 index 0000000..adebd99 --- /dev/null +++ b/templates/includes/layout.gohtml @@ -0,0 +1,19 @@ +<!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="/css/index.css" /> + <script src="https://unpkg.com/turbolinks/dist/turbolinks.js" crossorigin="anonymous"></script> +</head> + +<body> +<header> + <a id="header-logo" href="/"></> SendSafe</a> +</header> +{{template "content" .}} +</body> +</html> |