-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[shopsys] better removed subscription form on error pages (#1819)
- Loading branch information
1 parent
0861abc
commit 69c1b83
Showing
3 changed files
with
36 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,32 @@ | ||
<div class="footer"> | ||
<div class="web__line web__line--grey clearfix dont-print"> | ||
<div class="web__container"> | ||
{{ render(controller('App\\Controller\\Front\\NewsletterController:subscriptionAction')) }} | ||
</div> | ||
</div> | ||
<div class="web__line web__line--grey dont-print"> | ||
<div class="web__container"> | ||
{{ render(controller('App\\Controller\\Front\\AdvertController:boxAction',{'positionName' : 'footer'})) }} | ||
</div> | ||
</div> | ||
<div class="web__line"> | ||
<footer class="web__container footer__bottom"> | ||
<div class="footer__bottom__copyright dont-print"> | ||
Made with passion by <a href="http://www.shopsys-framework.com/">Shopsys Framework</a> | ||
<div class="web__footer{% if not isCookiesConsentGiven() %} web__footer--with-cookies js-eu-cookies-consent-footer-gap{% endif %}"> | ||
<div class="footer"> | ||
|
||
{% block newsletter_subscription %} | ||
<div class="web__line web__line--grey clearfix dont-print"> | ||
<div class="web__container"> | ||
{{ render(controller('App\\Controller\\Front\\NewsletterController:subscriptionAction')) }} | ||
</div> | ||
</div> | ||
{% endblock %} | ||
|
||
<div class="footer__bottom__articles"> | ||
{{ getShopInfoPhoneNumber() }} | ||
{{ getShopInfoEmail() }} | ||
{{ render(controller('App\\Controller\\Front\\ArticleController:footerAction')) }} | ||
<a class="menu__item__link" href="{{ url('front_contact') }}">{{ 'Contact'|trans }}</a> | ||
<div class="web__line web__line--grey dont-print"> | ||
<div class="web__container"> | ||
{{ render(controller('App\\Controller\\Front\\AdvertController:boxAction',{'positionName' : 'footer'})) }} | ||
</div> | ||
</footer> | ||
</div> | ||
<div class="web__line"> | ||
<footer class="web__container footer__bottom"> | ||
<div class="footer__bottom__copyright dont-print"> | ||
Made with passion by <a href="http://www.shopsys-framework.com/">Shopsys Framework</a> | ||
</div> | ||
|
||
<div class="footer__bottom__articles"> | ||
{{ getShopInfoPhoneNumber() }} | ||
{{ getShopInfoEmail() }} | ||
{{ render(controller('App\\Controller\\Front\\ArticleController:footerAction')) }} | ||
<a class="menu__item__link" href="{{ url('front_contact') }}">{{ 'Contact'|trans }}</a> | ||
</div> | ||
</footer> | ||
</div> | ||
</div> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters