summaryrefslogtreecommitdiff
path: root/papillon/templates/base.html
diff options
context:
space:
mode:
authoretienne2010-03-27 17:06:03 +0000
committeretienne2010-03-27 17:06:03 +0000
commit95729368a48257b110ea33dfb005785f8ed6734f (patch)
tree8b99b375a4b4a2e121a9192910af15485ea2b7c3 /papillon/templates/base.html
parent8ded76ae513b38d14773449e46543b54cf48ef49 (diff)
Rearrange directories - include documentation
Diffstat (limited to 'papillon/templates/base.html')
-rw-r--r--papillon/templates/base.html27
1 files changed, 27 insertions, 0 deletions
diff --git a/papillon/templates/base.html b/papillon/templates/base.html
new file mode 100644
index 0000000..b673f24
--- /dev/null
+++ b/papillon/templates/base.html
@@ -0,0 +1,27 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<head>
+ <link rel="stylesheet" href="{{root_url}}static/styles.css" />
+ <title>{% block title %}Papillon{% endblock %}</title>
+ {% block fullscript %}{% endblock %}
+</head>
+
+<body>
+<div id="main">
+<div id="header">
+<span id='languages'>{% for language in languages%}<a href='?language={{language.0}}'>{{language.1}}</a>{% endfor %}</span>
+</div>
+<div id="top">
+ <h1><a href='{{root_url}}'>Papillon</a></h1>
+</div>
+<div id="content">
+{% block content %}{% endblock %}
+</div>
+<div id="footer">
+<a href='http://blog.peacefrogs.net/nim/papillon/'>Papillon</a> - <a href='http://www.gnu.org/licenses/gpl.html'>Copyright</a> © 2008 <a href='http://redmine.peacefrogs.net/projects/show/papillon'>Papillon project</a>
+</div>
+</div>
+</body>
+</html>
+