custom/plugins/NetzpBlog6/src/Resources/views/storefront/page/blog/post.html.twig line 1

Open in your IDE?
  1. {% sw_extends '@Storefront/storefront/base.html.twig' %}
  2. {% block base_main_container %}
  3. <div class="container-main netzp-blog6-post">
  4.     {% block blog_content %}
  5.         {% block blog_content_post %}
  6.             {% if post %}
  7.                 {% block blog_content_post_inner %}
  8.                     {% if config.layoutdetail == 'largeimage' or config.layoutdetail == 'largeimagecontain' %}
  9.                         {% sw_include "@Storefront/storefront/page/blog/post-image-large.html.twig" %}
  10.                     {% else %}
  11.                         {% sw_include "@Storefront/storefront/page/blog/post-image-small.html.twig" %}
  12.                     {% endif %}
  13.                 {% endblock %}
  14.             {% endif %}
  15.         {% endblock %}
  16.         {% block blog_content_social %}
  17.             {% if(netzpShariffActive and config('NetzpShariff6.config.showPage')) %}
  18.                 {% sw_include "@Storefront/storefront/shariff-blog.html.twig" %}
  19.             {% endif %}
  20.         {% endblock %}
  21.         {% block blog_content_media %}
  22.             {% sw_include "@Storefront/storefront/page/blog/post-media.html.twig" with { post: post } %}
  23.         {% endblock %}
  24.         {% block blog_content_products %}
  25.             {% sw_include "@Storefront/storefront/page/blog/post-products.html.twig" %}
  26.         {% endblock %}
  27.     {% endblock %}
  28. </div>
  29. {% endblock %}