templates/page/page_show.html.twig line 1

Open in your IDE?
  1. {% extends 'standard_tpl.html.twig' %}
  2. {% block page_content %}
  3.     {% if content.hasThumbnail() %}
  4.         <figure class="image-box">
  5.             <img class="img-responsive" src="{{ content.thumbnail|imagine_filter('thumbnail_large') }}" alt="{{ content.title }}">
  6.         </figure>
  7.     {% endif %}
  8.     <div class="page-content">{{ content.body()|raw }}</div>
  9. {% endblock %}