templates/pages/singleProject.html.twig line 1

Open in your IDE?
  1. {% extends "base.html.twig" %}
  2. {% import "./macros_typography.html.twig" as macrosTypography %}
  3. {% import "./macros_button.html.twig" as macrosButton %}
  4. {% set headerColor = 'header-white'%}
  5. {% set bodyClass = 'bg-white'%}
  6. {% block content %}
  7.           {% for item in content.blocks %}
  8.             {{ include('includes/blocks/' ~ item.type ~ '.html.twig', { content : item, template : template, globalContent: content}) }}
  9.           {% endfor %} 
  10. {% endblock %}