aboutsummaryrefslogtreecommitdiffhomepage
path: root/themes/default/layout.twig
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas.loeuillet@gmail.com>2013-10-03 10:14:54 -0700
committerJean-Christophe Saad-Dupuy <saad.dupuy@gmail.com>2013-10-06 20:31:11 +0200
commitbf7516112f90ea0392918605acdb9167cf21e516 (patch)
treed97628451386a2ec254f3c93b29741267140bd14 /themes/default/layout.twig
parent79026b73a804d1fe3715c3edf5bc2cfb1e56732c (diff)
parentd47d2533accb30a69fbbb964f63793b821300974 (diff)
downloadwallabag-bf7516112f90ea0392918605acdb9167cf21e516.tar.gz
wallabag-bf7516112f90ea0392918605acdb9167cf21e516.tar.zst
wallabag-bf7516112f90ea0392918605acdb9167cf21e516.zip
Embeded jquery 2.0.3 dependancie
Diffstat (limited to 'themes/default/layout.twig')
m---------themes0
-rw-r--r--themes/default/layout.twig31
2 files changed, 31 insertions, 0 deletions
diff --git a/themes b/themes
deleted file mode 160000
Subproject 689dcedf8d6c7cf5e8424654fef4fd9687288dc
diff --git a/themes/default/layout.twig b/themes/default/layout.twig
new file mode 100644
index 00000000..fec7054a
--- /dev/null
+++ b/themes/default/layout.twig
@@ -0,0 +1,31 @@
1<!DOCTYPE html>
2<!--[if lte IE 6]><html class="no-js ie6 ie67 ie678" lang="{{ lang }}"><![endif]-->
3<!--[if lte IE 7]><html class="no-js ie7 ie67 ie678" lang="{{ lang }}"><![endif]-->
4<!--[if IE 8]><html class="no-js ie8 ie678" lang="{{ lang }}"><![endif]-->
5<!--[if gt IE 8]><html class="no-js" lang="{{ lang }}"><![endif]-->
6<html lang="{{ lang }}">
7 <head>
8 <meta name="viewport" content="initial-scale=1.0">
9 <meta charset="utf-8">
10 <!--[if IE]>
11 <meta http-equiv="X-UA-Compatible" content="IE=10">
12 <![endif]-->
13 <title>{% block title %}{% endblock %} - poche</title>
14{% include '_head.twig' %}
15{% include '_bookmarklet.twig' %}
16 </head>
17 <body>
18 {% include '_top.twig' %}
19 <div id="main">
20 {% block menu %}{% endblock %}
21 {% block precontent %}{% endblock %}
22 {% block messages %}
23 {% include '_messages.twig' %}
24 {% endblock %}
25 <div id="content" class="w600p center">
26 {% block content %}{% endblock %}
27 </div>
28 </div>
29{% include '_footer.twig' %}
30 </body>
31</html> \ No newline at end of file