diff options
| author | Julian Hurst <julian.hurst92@gmail.com> | 2020-10-14 18:19:00 +0200 |
|---|---|---|
| committer | Julian Hurst <julian.hurst92@gmail.com> | 2020-10-14 18:19:00 +0200 |
| commit | 8891eea532102b58a23a71a491be2c3f151720b5 (patch) | |
| tree | de9e577df2b2ff9c0072fda07b90d1884088b7c9 /templates/base.html | |
| download | grimtube-8891eea532102b58a23a71a491be2c3f151720b5.tar.gz | |
Initial commit
Diffstat (limited to 'templates/base.html')
| -rw-r--r-- | templates/base.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/templates/base.html b/templates/base.html new file mode 100644 index 0000000..7336dda --- /dev/null +++ b/templates/base.html @@ -0,0 +1,11 @@ +<!DOCTYPE HTML> +<html> + <head> + <link rel="stylesheet" href="/static/style.css"> + <title>{{block "title" .}}{{end}} - grimtube</title> + </head> + <body> + {{block "content" .}} + {{end}} + </body> +</html> |
