diff options
Diffstat (limited to 'src/templates/partials/master.html')
-rw-r--r-- | src/templates/partials/master.html | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/templates/partials/master.html b/src/templates/partials/master.html new file mode 100644 index 0000000..82cedac --- /dev/null +++ b/src/templates/partials/master.html @@ -0,0 +1,17 @@ +<!doctype html> +<html class="no-js" lang="en"> + <head> + <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1"> + <link rel="icon" href="/static/favicon.ico"> + <link rel="stylesheet" href="{{ $cssRoute }}"> + + <title>short.adyxax.org</title> + </head> + <body> + <main id="main"> + {% block content %}{% endblock %} + </main> + {% importnwt "templates/partials/footer.html" %} + </body> +</html> |