templates/base_page.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block menu_content %}
  3. {% include 'pages/_nav.html.twig' %}
  4. {% endblock %}
  5. {% block title %}
  6. {% set meta = page.content.meta|default(meta|default(false)) %}
  7. {{ meta.titre|default(titre|default('')) }} - Artemis Courtage
  8. {% endblock %}
  9. {% block meta %}
  10. {% set meta = page.content.meta|default(meta|default(false)) %}
  11. {% if meta is not empty %}
  12. <meta name="description" content="{{ meta.description }}">
  13. <meta name="robots" content="{{ meta.robots }}">
  14. <meta property="og:title" content="{{ meta.titre }}" />
  15. <meta property="og:description" content="{{ meta.description }}" />
  16. {% if page.content.hero_split_image.image is defined %}{% set image = page.content.hero_split_image.image %}{% endif %}
  17. {% if page.image is defined %}{% set image = page.image %}{% endif %}
  18. {% if image is defined %}<meta property="og:image" content="{{ absolute_url(asset(image)) }}" />{% endif %}
  19. {% endif %}
  20. {% endblock %}