templates/bundles/MonsieurBizSyliusCmsPagePlugin/Shop/Page/show.html.twig line 1

Open in your IDE?
  1. {% extends '@SyliusShop/layout.html.twig' %}
  2. {% block title %}{{ page.metaTitle }}{% endblock %}
  3. {% block metatags %}
  4.     {{ parent() }}
  5.     <meta property="og:type" content="page" />
  6.     {% if page.metaTitle is not empty %}
  7.         <meta property="og:title" content="{{ page.metaTitle }}"/>
  8.     {% endif %}
  9.     {% if page.metaDescription is not empty %}
  10.         <meta name="description" property="og:description" content="{{ page.metaDescription }}"/>
  11.     {% endif %}
  12.     {% if page.metaKeywords is not empty %}
  13.         <meta name="keywords" content="{{ page.metaKeywords }}"/>
  14.     {% endif %}
  15. {% endblock %}
  16. {% block content %}
  17.     {% block breadcrumb %}
  18.         {% include '/bundles/MonsieurBizSyliusCmsPagePlugin/Shop/Page/_breadcrumb.html.twig' %}
  19.     {% endblock %}
  20.     <div class="blockList">
  21.         <h1 class="ui monster dividing header">{{ page.title }}</h1>
  22.         <div>
  23.             {{ page.content|monsieurbiz_richeditor_render_field }}
  24.         </div>
  25.     </div>
  26. {% endblock %}