aboutsummaryrefslogtreecommitdiff
path: root/juick-www/src/main/resources/layouts/content.html
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2016-08-26 14:13:37 +0300
committerGravatar Vitaly Takmazov2016-08-30 10:52:51 +0300
commit6ea4235635c296991bbae3689d0b7dd735b17480 (patch)
tree33e5e931ea7638ef248c6413d41fcdc8bef0ee22 /juick-www/src/main/resources/layouts/content.html
parent05b8019ab6dece881fb6a282c1bd50ff5ba22b69 (diff)
pebble WIP
Diffstat (limited to 'juick-www/src/main/resources/layouts/content.html')
-rw-r--r--juick-www/src/main/resources/layouts/content.html29
1 files changed, 29 insertions, 0 deletions
diff --git a/juick-www/src/main/resources/layouts/content.html b/juick-www/src/main/resources/layouts/content.html
new file mode 100644
index 00000000..4cc1e2bf
--- /dev/null
+++ b/juick-www/src/main/resources/layouts/content.html
@@ -0,0 +1,29 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <meta charset="utf-8">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
+ <script type="text/javascript" src="/scripts.js"></script>
+ <link rel="stylesheet" type="text/css" href="/style.css"/>
+ {% block headers %}
+ {{ headers | raw }}
+ {% endblock %}
+ <title>{{ title }}</title>
+ <meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=no"/>
+ <link rel="icon" href="//i.juick.com/favicon.png"/>
+ <!--[if lt IE 9 & (!IEMobile 7)]>
+ <script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script>
+ <![endif]-->
+</head>
+<body>
+{% include "views/partial/navigation.html" %}
+ <section id="content">
+ {% block content %}
+ {% endblock %}
+ </section>
+ <aside id="column">
+ {% block column %}
+ {% endblock %}
+ </aside>
+</body>
+</html> \ No newline at end of file