diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2018-01-14 12:39:50 +0100 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2018-01-14 12:39:50 +0100 |
commit | 0dae37a2e98c13fbc78acd58b86565fd6f14c654 (patch) | |
tree | 681be6b03971acca3f57fd30d613909b60aaa984 /templates/layout.html | |
parent | a77f6e9d27f98bc36d0911ce58c109f4a18bd835 (diff) | |
download | rocket-blog-0dae37a2e98c13fbc78acd58b86565fd6f14c654.tar.gz rocket-blog-0dae37a2e98c13fbc78acd58b86565fd6f14c654.tar.bz2 rocket-blog-0dae37a2e98c13fbc78acd58b86565fd6f14c654.zip |
Split out layout from templates.
Diffstat (limited to 'templates/layout.html')
-rw-r--r-- | templates/layout.html | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/templates/layout.html b/templates/layout.html new file mode 100644 index 0000000..09ecd1c --- /dev/null +++ b/templates/layout.html @@ -0,0 +1,9 @@ +<!DOCTYPE html> +<html> + <head> + <title>{{ title }}</title> + </head> + <body> + {{{ content }}} + </body> +</html> |