diff options
author | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-07-09 09:00:26 +0000 |
---|---|---|
committer | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-07-09 09:00:26 +0000 |
commit | 403e83d7d5792448029e18522680076f4acabb94 (patch) | |
tree | 5c12d783eb9d852fdd2dcae4acb160f539540dcb /wk9/lect/hello/templates | |
parent | c49f2aa4c23a4688049e28cc154fb1de93a4e8fa (diff) |
Tue, Jul 9, 2024, 2:00 AM -07:00
Diffstat (limited to 'wk9/lect/hello/templates')
-rw-r--r-- | wk9/lect/hello/templates/layout.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/wk9/lect/hello/templates/layout.html b/wk9/lect/hello/templates/layout.html new file mode 100644 index 0000000..c9965f4 --- /dev/null +++ b/wk9/lect/hello/templates/layout.html @@ -0,0 +1,11 @@ +<!DOCTYPE html> + +<html lang="en"> + <head> + <meta name="viewport" content="initial-scale=1, width=device-width"> + <title>hello</title> + </head> + <body> + {% block body %}{% endblock %} + </body> +</html> |