diff options
author | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2014-02-12 21:58:40 +0100 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas.loeuillet@gmail.com> | 2014-02-12 21:58:40 +0100 |
commit | 943ac3c77ec1dd93d14a780b25fa147d0f882760 (patch) | |
tree | 2c22e26e4066a97f0548d97531aabccbd3fe7abd /themes/baggy/layout-login.twig | |
parent | 83b47311ba0b8383da7955723a694b0fb3819062 (diff) | |
download | wallabag-943ac3c77ec1dd93d14a780b25fa147d0f882760.tar.gz wallabag-943ac3c77ec1dd93d14a780b25fa147d0f882760.tar.zst wallabag-943ac3c77ec1dd93d14a780b25fa147d0f882760.zip |
new theme, baggy one cf #448
Diffstat (limited to 'themes/baggy/layout-login.twig')
-rw-r--r-- | themes/baggy/layout-login.twig | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/themes/baggy/layout-login.twig b/themes/baggy/layout-login.twig new file mode 100644 index 00000000..4078fbb0 --- /dev/null +++ b/themes/baggy/layout-login.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 %} - wallabag</title> | ||
14 | {% include '_head.twig' %} | ||
15 | {% include '_bookmarklet.twig' %} | ||
16 | </head> | ||
17 | <body class="login"> | ||
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 | ||