diff options
author | Simo Sorce <simo@redhat.com> | 2013-12-04 22:42:09 -0500 |
---|---|---|
committer | Simo Sorce <simo@redhat.com> | 2013-12-11 15:35:39 -0500 |
commit | 62e6fff6cf4b5c8a5c33c3143f995d047fe6c384 (patch) | |
tree | 9c62da6256708b011a0318738d3d08b4235b1931 /templates/index.html | |
parent | 92496ab03df595a19b61cfe4d0f0b3050262241d (diff) | |
download | ipsilon-62e6fff6cf4b5c8a5c33c3143f995d047fe6c384.tar.gz ipsilon-62e6fff6cf4b5c8a5c33c3143f995d047fe6c384.tar.xz ipsilon-62e6fff6cf4b5c8a5c33c3143f995d047fe6c384.zip |
Use jinja2 as the templating system
Add flashy css to indicate this is development stuff
Diffstat (limited to 'templates/index.html')
-rw-r--r-- | templates/index.html | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..230edc7 --- /dev/null +++ b/templates/index.html @@ -0,0 +1,23 @@ +<!doctype html> +<html lang="en"> +<head> + <meta charset="UTF-8"></meta> + <title>{{ title }}</title> + <link href="ui/ipsilon.css" type="text/css" rel="stylesheet"></link> + <link href="ui/favicon.ico" type="image/ico" rel="icon"></link> +</head> +<body> + <div id="container"> + <div id="background"> + <div id="background-header"></div> + <div id="background-navigation"></div> + <div id="background-left"></div> + <div id="background-center"></div> + <div id="background-right"></div> + </div> + <div id="content"> + <p>{{ content }}</p> + </div> + </div> +</body> +</html> |