X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=src%2FWallabag%2FCoreBundle%2FResources%2Fviews%2Fthemes%2Fbaggy%2Flayout.html.twig;h=cd4ed3fae396709b56b8101246c32ce42052baeb;hb=80302e5aaad623f53d9a393db553c439fbb0d8cf;hp=16070c7fa2db8902ea56507b7e9f49240802ab88;hpb=32da2a70ef278bd42f66eb82c3fbf1905a417b87;p=github%2Fwallabag%2Fwallabag.git diff --git a/src/Wallabag/CoreBundle/Resources/views/themes/baggy/layout.html.twig b/src/Wallabag/CoreBundle/Resources/views/themes/baggy/layout.html.twig index 16070c7f..cd4ed3fa 100644 --- a/src/Wallabag/CoreBundle/Resources/views/themes/baggy/layout.html.twig +++ b/src/Wallabag/CoreBundle/Resources/views/themes/baggy/layout.html.twig @@ -1,43 +1,71 @@ - - - - - - - - - - - {% block title %}{% endblock %} - wallabag - {% include "WallabagCoreBundle:themes:_global/_head_icon.html.twig" %} +{% extends "WallabagCoreBundle::base.html.twig" %} - - - - - +{% block css %} + {{ parent() }} + +{% endblock %} - - - - - - - - - - - {% include "WallabagCoreBundle::_top.html.twig" %} -
- {% block menu %}{% endblock %} - {% block precontent %}{% endblock %} - {{ include("WallabagCoreBundle::_messages.html.twig", {'flashMessages': app.session.flashbag.get('notice')}) }} -
- {% block content %}{% endblock %} +{% block scripts %} + {{ parent() }} + +{% endblock %} + +{% block header %} +
+

+ {% block logo %} + + wallabag logo + + {% endblock %} +

+
+{% endblock %} + +{% block menu %} + + +{% endblock %} + +{% block messages %} + {% for flashMessage in app.session.flashbag.get('notice') %} +
+ × +

{{ flashMessage|trans }}

-
- {% include "WallabagCoreBundle::_footer.html.twig" %} - - + {% endfor %} +{% endblock %} + +{% block footer %} + +{% endblock %}