diff options
author | bnewbold <bnewbold@robocracy.org> | 2012-04-22 23:07:35 -0400 |
---|---|---|
committer | bnewbold <bnewbold@robocracy.org> | 2012-04-22 23:07:35 -0400 |
commit | 7b6696714142de8deeb5ef4f144ac3ecf8116e3e (patch) | |
tree | 5343926cb2b008219e43c1c6e9ce0252509ffc6a /templates | |
parent | f9ef9d242c4d1de392269379598d2a05109d44ad (diff) | |
download | bommom-7b6696714142de8deeb5ef4f144ac3ecf8116e3e.tar.gz bommom-7b6696714142de8deeb5ef4f144ac3ecf8116e3e.zip |
basic HTML templating
Diffstat (limited to 'templates')
-rw-r--r-- | templates/base.html | 8 | ||||
-rw-r--r-- | templates/home.html | 10 |
2 files changed, 10 insertions, 8 deletions
diff --git a/templates/base.html b/templates/base.html new file mode 100644 index 0000000..538d7db --- /dev/null +++ b/templates/base.html @@ -0,0 +1,8 @@ +{{ define "HEADER" }}<html> +<head> +<title>bombom</title> +<link rel="stylesheet" type="text/css" href="/static/default.css"></link> +</head> +<body>{{ end }} +{{ define "FOOTER" }}</body> +</html>{{ end }} diff --git a/templates/home.html b/templates/home.html index 0cc420e..1298241 100644 --- a/templates/home.html +++ b/templates/home.html @@ -1,9 +1,3 @@ -<html> -<head> -<title>bombom</title> -<link rel="stylesheet" type="text/css" href="/static/default.css"></link> -</head> -<body> +{{ template "HEADER" }} <h1>Home Page</h1> -</body> -</html> +{{ template "FOOTER" }} |