diff options
author | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2011-03-02 16:19:50 +0100 |
---|---|---|
committer | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | 2011-03-02 16:19:50 +0100 |
commit | 2d698a74f90b0915dd8c2e3e42ce0f21d0a7bd1c (patch) | |
tree | e4da3067dde6aedb30436d28ec5701b701fcacfc /templates/page_skeleton.html | |
parent | dd5772e4b88dd41e210a4b789a52ae8656e5f1fd (diff) |
Add comment support to article template, add support for multiple page templates.
Diffstat (limited to 'templates/page_skeleton.html')
-rw-r--r-- | templates/page_skeleton.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/templates/page_skeleton.html b/templates/page_skeleton.html new file mode 100644 index 0000000..daa8781 --- /dev/null +++ b/templates/page_skeleton.html @@ -0,0 +1,15 @@ +<?xml version='1.0' encoding='utf-8'?> +<!DOCTYPE html> +<html lang="de" xml:lang="de" xmlns="http://www.w3.org/1999/xhtml"> + <head> + <meta charset="utf-8" /> + <meta content="initial-scale=1.0, width=device-width" name="viewport" /> + <title>{title|html}</title> + {head} + </head> + + <body> + {body} + </body> +</html> + |