diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2015-01-23 16:28:37 +0100 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2015-01-23 16:28:37 +0100 |
commit | ad4d1caa9e744af57ca58a4e57576533eb682d00 (patch) | |
tree | 37d6c284d2afc7fc62cdf80be419b536ab4ea603 /src/WallabagBundle/Resources/views/layout.html.twig | |
parent | b84a80559a1167b5500fbc5eb4965d3b08b371ef (diff) | |
download | wallabag-ad4d1caa9e744af57ca58a4e57576533eb682d00.tar.gz wallabag-ad4d1caa9e744af57ca58a4e57576533eb682d00.tar.zst wallabag-ad4d1caa9e744af57ca58a4e57576533eb682d00.zip |
move WallabagBundle into Wallabag:CoreBundle
Diffstat (limited to 'src/WallabagBundle/Resources/views/layout.html.twig')
-rw-r--r-- | src/WallabagBundle/Resources/views/layout.html.twig | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/src/WallabagBundle/Resources/views/layout.html.twig b/src/WallabagBundle/Resources/views/layout.html.twig deleted file mode 100644 index 34d9b1b0..00000000 --- a/src/WallabagBundle/Resources/views/layout.html.twig +++ /dev/null | |||
@@ -1,33 +0,0 @@ | |||
1 | <!DOCTYPE html> | ||
2 | <!--[if lte IE 6]><html class="no-js ie6 ie67 ie678" lang="en"><![endif]--> | ||
3 | <!--[if lte IE 7]><html class="no-js ie7 ie67 ie678" lang="en"><![endif]--> | ||
4 | <!--[if IE 8]><html class="no-js ie8 ie678" lang="en"><![endif]--> | ||
5 | <!--[if gt IE 8]><html class="no-js" lang="en"><![endif]--> | ||
6 | <html lang="en"> | ||
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 "WallabagBundle::_head.html.twig" %} | ||
15 | {% include "WallabagBundle::_bookmarklet.html.twig" %} | ||
16 | </head> | ||
17 | <body> | ||
18 | {% include "WallabagBundle::_top.html.twig" %} | ||
19 | <div id="main"> | ||
20 | {% block menu %}{% endblock %} | ||
21 | {% block precontent %}{% endblock %} | ||
22 | {% for flashMessage in app.session.flashbag.get('notice') %} | ||
23 | <div class="flash-notice"> | ||
24 | {{ flashMessage }} | ||
25 | </div> | ||
26 | {% endfor %} | ||
27 | <div id="content" class="w600p center"> | ||
28 | {% block content %}{% endblock %} | ||
29 | </div> | ||
30 | </div> | ||
31 | {% include "WallabagBundle::_footer.html.twig" %} | ||
32 | </body> | ||
33 | </html> \ No newline at end of file | ||