Skip to content

Commit

Permalink
Merge pull request Sylius#8131 from emodric/pre_post_content_blocks
Browse files Browse the repository at this point in the history
Add pre & post content blocks to UiBundle layouts
  • Loading branch information
pamil committed Jun 5, 2017
2 parents c927cda + 6ac1552 commit 444c6f9
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
Expand Up @@ -16,9 +16,15 @@
{% endblock %}
</head>
<body class="centered">
{% block pre_content %}
{% endblock %}

{% block content %}
{% endblock %}

{% block post_content %}
{% endblock %}

{% block javascripts %}
{% endblock %}
</body>
Expand Down
Expand Up @@ -30,8 +30,14 @@
<div id="content">
{% include '@SyliusUi/_flashes.html.twig' %}

{% block pre_content %}
{% endblock %}

{% block content %}
{% endblock %}

{% block post_content %}
{% endblock %}
</div>
</div>
</div>
Expand Down

0 comments on commit 444c6f9

Please sign in to comment.