diff options
| author | Melonai <einebeere@gmail.com> | 2021-09-11 00:39:29 +0200 |
|---|---|---|
| committer | Melonai <einebeere@gmail.com> | 2021-09-11 00:39:29 +0200 |
| commit | f48897e6c5949d46fd8be453d6ef3970fb4d123f (patch) | |
| tree | ee37e3936de725043b3fe5c0b326f17f073b78b3 /assets/templates/_base.template.html | |
| parent | ff1bee9cbd3fa99a962f4e98429fe3827ec632a7 (diff) | |
| download | portgate-main.tar.zst portgate-main.zip | |
Diffstat (limited to 'assets/templates/_base.template.html')
| -rw-r--r-- | assets/templates/_base.template.html | 27 |
1 files changed, 18 insertions, 9 deletions
diff --git a/assets/templates/_base.template.html b/assets/templates/_base.template.html index 2ed25d1..d7966bf 100644 --- a/assets/templates/_base.template.html +++ b/assets/templates/_base.template.html @@ -1,11 +1,20 @@ <!DOCTYPE html> <html lang="en"> -<head> - <meta charset="UTF-8"> - <title>Portgate</title> -</head> -<body> - <h2>Portgate</h2> - {{template "content"}} -</body> -</html> \ No newline at end of file + <head> + <meta charset="UTF-8" /> + <title>Portgate</title> + <meta name="viewport" content="width=device-width, initial-scale=1.0" /> + <link rel="stylesheet" href="_portgate/static/index.css" /> + </head> + <body> + <div class="container"> + <img + class="logo" + src="_portgate/static/portgate.svg" + alt="Portgate" + /> + <h1 class="title">Portgate</h1> + {{template "content"}} + </div> + </body> +</html> |
