Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/creactivistore/_templates/templates/layout.html
diff options
context:
space:
mode:
Diffstat (limited to 'creactivistore/_templates/templates/layout.html')
-rw-r--r--creactivistore/_templates/templates/layout.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/creactivistore/_templates/templates/layout.html b/creactivistore/_templates/templates/layout.html
new file mode 100644
index 0000000..6d7b119
--- /dev/null
+++ b/creactivistore/_templates/templates/layout.html
@@ -0,0 +1,16 @@
+<!doctype html>
+{% from "_helpers.html" import link_to %}
+<head>
+ <title>{{ title }}</title>
+ <script src="/static/js/jquery-1.6.2.min.js" type="text/javascript"></script>
+ {% block head %}{% endblock %}
+</head>
+
+<body>
+ <ul>
+ <li>
+ <a href="/query">query-sample</a>
+ </li>
+ </ul>
+ {% block content %}{% endblock %}
+</body>