templates/content/tmpl/RLW.html.twig line 1

Open in your IDE?
  1. {% extends "1-col-sidebar.html.twig" %}
  2. {% block column %}
  3.                 {% if site_code == constant("App\\Entity\\Content::SITE_RCS") %}
  4.             
  5. {% include  "includes/curtain-ads/rlw.html.twig" %}
  6.             {% endif %}
  7.     {% if content.getShowTitle() %}
  8.         <h1>{{ content.getTitle() | raw }}</h1>
  9.     {% endif %}
  10.     
  11.     
  12.     {% if content.getFeaturedImageTag() %}
  13.         {{ content.getFeaturedImageTag("display-block","")|raw }}
  14.     {% endif %}
  15.     
  16.     {# show full content #}
  17.     {% if content.getContentFull() is not empty %}
  18.         {{ content.getContentFull() | wordpress | raw }}
  19.     {% endif %}
  20.     {% if content.getContentBuilder() and content.getContentBuilder() != '{}' %}
  21.             {{ content.getContentBuilder() | builder | raw }}
  22.     {% endif %}
  23.     
  24. {% endblock %}