diff options
| author | Navan Chauhan <navanchauhan@gmail.com> | 2021-05-26 23:58:29 +0530 | 
|---|---|---|
| committer | Navan Chauhan <navanchauhan@gmail.com> | 2021-05-26 23:58:29 +0530 | 
| commit | 5b2a67fe247496f3106db956964996f771160fc5 (patch) | |
| tree | 7b2c052bdf539f433ed3ab6bd133b6d46c7ff7e5 /templates/base.html | |
| parent | b23df7d5c27ecd02d5f2fe1fa75b08f718101a2a (diff) | |
added code and content
Diffstat (limited to 'templates/base.html')
| -rw-r--r-- | templates/base.html | 19 | 
1 files changed, 19 insertions, 0 deletions
| diff --git a/templates/base.html b/templates/base.html new file mode 100644 index 0000000..0dc51e0 --- /dev/null +++ b/templates/base.html @@ -0,0 +1,19 @@ +<!DOCTYPE html> +<html lang="en"> +<head> +    {% block head %} +    <link rel="stylesheet" href="/assets/main.css" /> +    <link rel="stylesheet" href="/assets/sakura.css" /> +    <meta charset="utf-8"> +    <meta name="viewport" content="width=device-width, initial-scale=1.0"> +    <title>Hey - {% block title %}{% endblock %}</title> +    {% endblock %} +</head> +<body> +    {% include "header.html" %} +    {% block body %}{% endblock %} + +<script src="assets/manup.min.js"></script> +<script src="/pwabuilder-sw-register.js"></script>     +</body> +</html>
\ No newline at end of file | 
