templates/includes/blocks/newsSingleTitle.html.twig line 1

Open in your IDE?
  1. <p class="opacity-50 mb-8">
  2.   <time>
  3.           {% set activeLanguage = request.resourceLocatorPrefix|replace({'/': ''}) %}
  4.           {% if activeLanguage == 'fr' %}
  5.               {{ globalContent.date|date('d M, Y')|replace({'Jan': 'Jan', 'Feb': 'Fév', 'Mar': 'Mar', 'Apr': 'Avr', 'May': 'Mai', 'Jun': 'Juin', 'Jul': 'Juil', 'Aug': 'Août', 'Sep': 'Sep', 'Oct': 'Oct', 'Nov': 'Nov', 'Dec': 'Déc'}) }}
  6.           {% elseif activeLanguage == 'en' %}
  7.               {{ globalContent.date|date('d M, Y') }}
  8.           {% endif %}
  9.   </time>
  10.   {% if globalContent.authorName %} &nbsp;|&nbsp; {{globalContent.authorName}}{% endif %}
  11. </p>
  12. <h1>{{ globalContent.title }}</h1>
  13. <p>{{ content.description|raw }}</p>