diff options
author | Harald Eilertsen <haraldei@anduin.net> | 2017-11-16 16:40:38 +0100 |
---|---|---|
committer | Harald Eilertsen <haraldei@anduin.net> | 2017-11-16 16:40:38 +0100 |
commit | 3bc7143ced57da953969d80d99ff8466ab986ae2 (patch) | |
tree | a4a8ef0958a1c9dae5b6f09f4642d83c3d756fe3 /templates | |
parent | 1767eb2dafbab8b19cc4cf0a9a890539ce2948c1 (diff) | |
download | rocket-blog-3bc7143ced57da953969d80d99ff8466ab986ae2.tar.gz rocket-blog-3bc7143ced57da953969d80d99ff8466ab986ae2.tar.bz2 rocket-blog-3bc7143ced57da953969d80d99ff8466ab986ae2.zip |
Add Bart templating engine.
Diffstat (limited to 'templates')
-rw-r--r-- | templates/index.html | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..c2a7b92 --- /dev/null +++ b/templates/index.html @@ -0,0 +1,9 @@ +<!DOCTYPE html> +<html> + <head> + <title>{{ title }}</title> + </head> + <body> + {{ content }} + </body> +</html>
\ No newline at end of file |