Error 500 Internal Server Error

GET https://www.jgonzalez.eu/articles/explicabo-dolorem-consequuntur-rem

Exceptions

An exception has been thrown during the rendering of a template ("App\Twig\MediaExtension::mediaPath(): Argument #1 ($media) must be of type App\Doctrine\Entity\Site\Media, null given, called in /tmp/symfony_cache/dev/twig/f2/f26b536a4604035358703c4a0a450a98.php on line 361") in site/section/blog/post_list.html.twig at line 101.

Exceptions 2

Twig\Error\ RuntimeError

Show exception properties
Twig\Error\RuntimeError {#72723
  -lineno: 101
  -rawMessage: "An exception has been thrown during the rendering of a template ("App\Twig\MediaExtension::mediaPath(): Argument #1 ($media) must be of type App\Doctrine\Entity\Site\Media, null given, called in /tmp/symfony_cache/dev/twig/f2/f26b536a4604035358703c4a0a450a98.php on line 361")."
  -source: Twig\Source {#72758
    -code: """
      {% extends 'site/section/base.html.twig' %}\n
      \n
      {% block item %}\n
          <article role="article" id="post-item-{{ item.id }}" class="section-item-element {{ (not hasAnyMedia ? 'no-media') }}" itemscope\n
                   itemtype="https://schema.org/BlogPosting">\n
              {% if section.displayCover and item.media is not null %}\n
                  <a href="{{ item|epx_blog_post_url(postTemplatePage) }}" class="cover-link {{ not item.cropMedia ? 'contain' }}">\n
                      <figure itemprop="image" itemscope itemtype="https://schema.org/ImageObject">\n
                          <img\n
                              src="{{ item.media|media_filter(item.cropMedia ? 'epx_thumb_post' : 'epx_thumb_post_fit') }}"\n
                              alt="{{ item.media.altText|e('html_attr') }}"\n
                              itemprop="image"\n
                          >\n
                          <meta itemprop="url" content="{{ absolute_url(item.media|media_public_path) }}">\n
                          <meta itemprop="height" content="{{ item.media.height }}">\n
                          <meta itemprop="width" content="{{ item.media.width }}">\n
                      </figure>\n
                  </a>\n
              {% endif %}\n
      \n
              <meta itemprop="mainEntityOfPage" content="{{ absolute_url(item|epx_blog_post_url(postTemplatePage)) }}">\n
      \n
              {% if not section.displayTitle and section.displayContent %}\n
                  {{ item.title|section_content_heading(section, 2, "sr-only", 'itemprop="headline"') }}\n
              {% endif %}\n
              {% if section.displayTitle or section.displayDate or section.displayTags %}\n
                  <header>\n
                      {% if section.displayTitle %}\n
                          <a href="{{ item|epx_blog_post_url(postTemplatePage) }}" class="title-link" itemprop="url">\n
                              {% if section.title is null %}\n
                                  {% apply section_heading(section, 2, "title", 'itemprop="headline"') %}\n
                                      {{ item.title|auto_title_format(section) }}\n
                                  {% endapply %}\n
                              {% else %}\n
                                  {% apply section_content_heading(section, 2, "title", 'itemprop="headline"') %}\n
                                      {{ item.title|auto_title_format(section) }}\n
                                  {% endapply %}\n
                              {% endif %}\n
                          </a>\n
                      {% endif %}\n
                      {% if section.displayAuthor or section.displayDate %}\n
                          <div class="meta">\n
                              {% if section.displayDate %}\n
                                  <span class="date">\n
                                  {{ icon('far fa-calendar') }}\n
                                  <span class="sr-only">Date : </span>\n
                                  <time datetime="{{ item.date|date('c') }}" itemprop="datePublished" pubdate>\n
                                      {{ item.date|format_datetime('medium', 'none')|ucfirst }}\n
                                  </time>\n
                              </span>\n
                              {% endif %}\n
                              {% if section.displayAuthor and item.author %}\n
                                  <span class="author" itemprop="author" itemscope itemtype="https://schema.org/Person">\n
                                  {{ icon('fas fa-circle-user') }}\n
                                  <span class="sr-only">Publié par</span>\n
                                  <cite itemprop="name">{{ item.author }}</cite>\n
                              </span>\n
                              {% endif %}\n
                              {% if section.displayTags and item.tags is not empty %}\n
                                  <span class="tags">\n
                                  {{ icon('fas fa-tags') }}\n
                                  <span class="sr-only">{{ 'site.post_list.label_tags'|trans_site }}</span>\n
                                  {% for tag in item.tags %}\n
                                      <a href="{{ epx_blog_path(postListPage, tag) }}" class="tag" rel="tag" itemprop="keywords">\n
                                          {{- tag -}}\n
                                      </a>\n
                                      {{- loop.last ? '' : ', ' -}}\n
                                  {%- endfor %}\n
                              </span>\n
                              {% endif %}\n
                          </div>\n
                      {% endif %}\n
                  </header>\n
              {% endif %}\n
              {% if section.displayContent %}\n
                  <div class="item-description" itemprop="description">\n
                      {{ item.summary|nl2br }}\n
                  </div>\n
              {% endif %}\n
              {% if section.displayPostLink %}\n
                  <div class="bottom-action">\n
                      {% if section_link_style is defined and section_link_style is not null %}\n
                          {% set class = ['link', section_link_style_class, section_link_element_id] %}\n
                          {% if section_link_style.style.style.rippleEffect != false %}\n
                              {% set class = class|merge(['waves-effect']) %}\n
                          {% endif %}\n
                          <a href="{{ item|epx_blog_post_url(postTemplatePage) }}" class="{{ class|join(' ') }}">\n
                              <reboot-link-before></reboot-link-before>\n
                              <reboot-link-border></reboot-link-border>\n
                              <reboot-link-background></reboot-link-background>\n
                              {{ icon('fal fa-angle-right', {wrapper: 'none'}) }}\n
                              <span class="link-text">{{ 'site.post_list.read_more'|trans_site }}</span>\n
                          </a>\n
                      {% endif %}\n
                  </div>\n
              {% endif %}\n
      \n
              <div itemprop="publisher" itemscope itemtype="https://schema.org/Organization" style="display:none">\n
                  <meta itemprop="name" content="{{ item.blog.site.name }}">\n
                  <div itemprop="logo" itemscope itemtype="https://schema.org/ImageObject">\n
                      <meta itemprop="url" content="{{ absolute_url(item.blog.site.logo|media_public_path) }}">\n
                  </div>\n
              </div>\n
      \n
              <meta itemprop="dateModified" content="{{ item.updatedAt|date('c') }}">\n
          </article>\n
      {% endblock %}\n
      \n
      {% block sectionContent %}\n
          {% if section.displaySearch %}\n
              <form class="cog-search cog-cognito" action="{{ epx_blog_path(postListPage) }}" method="get">\n
                  <div class="search-input-wrapper">\n
                      {{ icon('fas magnifying-glass') }}\n
                      <input type="search" id="search-query" name="search" aria-label="{{ 'site.post_list.search_placeholder'|trans_site }}"\n
                             placeholder="{{ 'site.post_list.search_placeholder'|trans_site }}"\n
                             value="{{ nav.searchTerm.search }}">\n
                  </div>\n
              </form>\n
          {% endif %}\n
      \n
          {% if section.displayArticles and (nav.display and nav.displayCount) %}\n
              <div class="search-info section-element">\n
                  {{ 'site.post_list.results'|trans_site({"count": nav.count}) }}\n
                  {% if nav.searchTerm %}\n
                      {% if nav.searchTerm.search is defined and nav.searchTerm.search is not empty %}\n
                          {{ 'site.post_list.results_for'|trans_site({'tag':\n
                              '<span class="term">'~nav.searchTerm.search|e~'</span>'})|raw }}\n
                      {% endif %}\n
                      {% if (nav.searchTerm.search is defined and nav.searchTerm.search is not empty) and (nav.searchTerm.tag is defined and nav.searchTerm.tag is not empty) %}\n
                          {{ 'site.post_list.results_for_and'|trans_site }}\n
                      {% endif %}\n
                      {% if nav.searchTerm.tag is defined and nav.searchTerm.tag is not empty %}\n
                          {% if nav.searchTerm is iterable %}\n
                              {{ 'site.post_list.results_for'|trans_site({'tag':\n
                                  '<span class="term">'~nav.searchTerm.tag|e|join(', ')~'</span>'})|raw }}\n
                          {% else %}\n
                              {{ 'site.post_list.results_for'|trans_site({'tag':\n
                                  '<span class="term">'~nav.searchTerm.tag|e~'</span>'})|raw }}\n
                          {% endif %}\n
                      {% endif %}\n
                  {% endif %}\n
              </div>\n
          {% endif %}\n
      \n
      \n
          {% if section.displayArticles %}\n
              <div class="post-list item-grid-layout-container section-element">\n
                  {% for item in posts %}\n
                      {{ block('item') }}\n
                  {% endfor %}\n
              </div>\n
      \n
              {% if nav.display and (nav.current > 1 or (nav.max > 0 and nav.current != nav.max)) %}\n
                  <nav class="section-element">\n
                      {%- if nav.current > 1 -%}\n
                          <a class="prev" href="{{ nav.prev }}#{{ section|section_id }}-o" title="{{ 'site.post_list.previous'|trans_site }}">\n
                              {{ icon('fal fa-angle-left fa-fw') }}{{ 'site.post_list.previous'|trans_site }}\n
                          </a>\n
                      {%- endif -%}\n
                      {%- if nav.max > 0 and nav.current != nav.max -%}\n
                          <a class="next" href="{{ nav.next }}#{{ section|section_id }}-o" title="{{ 'site.post_list.next'|trans_site }}">\n
                              {{ 'site.post_list.next'|trans_site }}{{ icon('fal fa-angle-right fa-fw') }}\n
                          </a>\n
                      {%- endif -%}\n
                  </nav>\n
              {% endif %}\n
          {% endif %}\n
      {% endblock %}\n
      \n
      {% block sectionAnimations %}\n
          {% do add_animation_properties([\n
              {\n
                  "targets": "article",\n
                  "name": "fadeIn"\n
              }\n
          ]) %}\n
      {% endblock %}\n
      \n
      """
    -name: "site/section/blog/post_list.html.twig"
    -path: "/app/templates/site/section/blog/post_list.html.twig"
  }
  -phpFile: "/app/vendor/twig/twig/src/Template.php"
  -phpLine: 460
}
  1. {% endif %}
  2. <div itemprop="publisher" itemscope itemtype="https://schema.org/Organization" style="display:none">
  3. <meta itemprop="name" content="{{ item.blog.site.name }}">
  4. <div itemprop="logo" itemscope itemtype="https://schema.org/ImageObject">
  5. <meta itemprop="url" content="{{ absolute_url(item.blog.site.logo|media_public_path) }}">
  6. </div>
  7. </div>
  8. <meta itemprop="dateModified" content="{{ item.updatedAt|date('c') }}">
  9. </article>
Template->yieldBlock('item', array('posts' => array(object(Post), object(Post), object(Post)), 'section' => object(PostListSection), 'nav' => array('display' => false, 'searchTerm' => array('tag' => null, 'search' => ''), 'displayCount' => false, 'count' => 3, 'current' => 1, 'max' => 1, 'next' => '/articles/%5Bpost_slug%5D?p=2', 'prev' => '/articles/%5Bpost_slug%5D?p=0'), 'hasAnyMedia' => false, 'postListPage' => object(Page), 'postTemplatePage' => object(Page), 'section_link_style' => object(LinkStyle), 'section_link_style_class' => 'link-style-5ecc267', 'section_link_element_id' => 'link-element-2c8dcbb', 'controller' => object(PostListSectionController), 'app' => object(AppVariable), 'sectionStyles' => object(SectionStyle), 'class' => array('link-style-5ecc267-section', 'link-element-2c8dcbb-section'), 'forceFixedLayout' => false, 'previousSection' => object(PostContentSection), 'hasLink' => false, 'header_content' => object(Markup), '_parent' => array('posts' => array(object(Post), object(Post), object(Post)), 'section' => object(PostListSection), 'nav' => array('display' => false, 'searchTerm' => array('tag' => null, 'search' => ''), 'displayCount' => false, 'count' => 3, 'current' => 1, 'max' => 1, 'next' => '/articles/%5Bpost_slug%5D?p=2', 'prev' => '/articles/%5Bpost_slug%5D?p=0'), 'hasAnyMedia' => false, 'postListPage' => object(Page), 'postTemplatePage' => object(Page), 'section_link_style' => object(LinkStyle), 'section_link_style_class' => 'link-style-5ecc267', 'section_link_element_id' => 'link-element-2c8dcbb', 'controller' => object(PostListSectionController), 'app' => object(AppVariable), 'sectionStyles' => object(SectionStyle), 'class' => array('link-style-5ecc267-section', 'link-element-2c8dcbb-section'), 'forceFixedLayout' => false, 'previousSection' => object(PostContentSection), 'hasLink' => false, 'header_content' => object(Markup)), '_seq' => array(object(Post), object(Post), object(Post)), 'loop' => array('parent' => array('posts' => array(object(Post), object(Post), object(Post)), 'section' => object(PostListSection), 'nav' => array('display' => false, 'searchTerm' => array('tag' => null, 'search' => ''), 'displayCount' => false, 'count' => 3, 'current' => 1, 'max' => 1, 'next' => '/articles/%5Bpost_slug%5D?p=2', 'prev' => '/articles/%5Bpost_slug%5D?p=0'), 'hasAnyMedia' => false, 'postListPage' => object(Page), 'postTemplatePage' => object(Page), 'section_link_style' => object(LinkStyle), 'section_link_style_class' => 'link-style-5ecc267', 'section_link_element_id' => 'link-element-2c8dcbb', 'controller' => object(PostListSectionController), 'app' => object(AppVariable), 'sectionStyles' => object(SectionStyle), 'class' => array('link-style-5ecc267-section', 'link-element-2c8dcbb-section'), 'forceFixedLayout' => false, 'previousSection' => object(PostContentSection), 'hasLink' => false, 'header_content' => object(Markup)), 'index0' => 0, 'index' => 1, 'first' => true, 'revindex0' => 2, 'revindex' => 3, 'length' => 3, 'last' => false), 'item' => object(Post), '_key' => 0), array('sectionTitle' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionTitle'), 'sectionContentBefore' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionContentBefore'), 'sectionContent' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_sectionContent'), 'sectionLinks' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionLinks'), 'sectionBeforeContainer' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionBeforeContainer'), 'container' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_container'), 'sectionContainer' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionContainer'), 'sectionContainerContents' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionContainerContents'), 'animations' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_animations'), 'sectionAnimations' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_sectionAnimations'), 'arrowEffect' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_arrowEffect'), 'item' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_item'))) in /tmp/symfony_cache/dev/twig/f2/f26b536a4604035358703c4a0a450a98.php (line 513)
  1. $context['loop']['last'] = 1 === $length;
  2. }
  3. foreach ($context['_seq'] as $context["_key"] => $context["item"]) {
  4. // line 149
  5. yield " ";
  6. yield from $this->unwrap()->yieldBlock("item", $context, $blocks);
  7. yield "
  8. ";
  9. ++$context['loop']['index0'];
  10. ++$context['loop']['index'];
  11. $context['loop']['first'] = false;
in vendor/twig/twig/src/Template.php -> block_sectionContent (line 446)
  1. throw new \LogicException('A block must be a method on a \Twig\Template instance.');
  2. }
  3. if (null !== $template) {
  4. try {
  5. yield from $template->$block($context, $blocks);
  6. } catch (Error $e) {
  7. if (!$e->getSourceContext()) {
  8. $e->setSourceContext($template->getSourceContext());
  9. }
Template->yieldBlock('sectionContent', array('posts' => array(object(Post), object(Post), object(Post)), 'section' => object(PostListSection), 'nav' => array('display' => false, 'searchTerm' => array('tag' => null, 'search' => ''), 'displayCount' => false, 'count' => 3, 'current' => 1, 'max' => 1, 'next' => '/articles/%5Bpost_slug%5D?p=2', 'prev' => '/articles/%5Bpost_slug%5D?p=0'), 'hasAnyMedia' => false, 'postListPage' => object(Page), 'postTemplatePage' => object(Page), 'section_link_style' => object(LinkStyle), 'section_link_style_class' => 'link-style-5ecc267', 'section_link_element_id' => 'link-element-2c8dcbb', 'controller' => object(PostListSectionController), 'app' => object(AppVariable), 'sectionStyles' => object(SectionStyle), 'class' => array('link-style-5ecc267-section', 'link-element-2c8dcbb-section'), 'forceFixedLayout' => false, 'previousSection' => object(PostContentSection), 'hasLink' => false, 'header_content' => object(Markup)), array('sectionTitle' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionTitle'), 'sectionContentBefore' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionContentBefore'), 'sectionContent' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_sectionContent'), 'sectionLinks' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionLinks'), 'sectionBeforeContainer' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionBeforeContainer'), 'container' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_container'), 'sectionContainer' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionContainer'), 'sectionContainerContents' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionContainerContents'), 'animations' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_animations'), 'sectionAnimations' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_sectionAnimations'), 'arrowEffect' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_arrowEffect'), 'item' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_item'))) in /tmp/symfony_cache/dev/twig/b2/b2e10f2df87d208f3eb1d56b48cf0fdf.php (line 151)
  1. ";
  2. // line 48
  3. $context["section_content"] = ('' === $tmp = \Twig\Extension\CoreExtension::captureOutput((function () use (&$context, $macros, $blocks) {
  4. // line 49
  5. yield " ";
  6. yield from $this->unwrap()->yieldBlock('sectionContent', $context, $blocks);
  7. yield from [];
  8. })())) ? '' : new Markup($tmp, $this->env->getCharset());
  9. // line 51
  10. yield "
  11. ";
in vendor/twig/twig/src/Extension/CoreExtension.php -> {closure:__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e::doDisplay():148} (line 2106)
  1. {
  2. $level = ob_get_level();
  3. ob_start();
  4. try {
  5. foreach ($body as $data) {
  6. echo $data;
  7. }
  8. } catch (\Throwable $e) {
  9. while (ob_get_level() > $level) {
  10. ob_end_clean();
CoreExtension::captureOutput(object(Generator)) in /tmp/symfony_cache/dev/twig/b2/b2e10f2df87d208f3eb1d56b48cf0fdf.php (line 148)
  1. })())) ? '' : new Markup($tmp, $this->env->getCharset());
  2. // line 47
  3. yield "
  4. ";
  5. // line 48
  6. $context["section_content"] = ('' === $tmp = \Twig\Extension\CoreExtension::captureOutput((function () use (&$context, $macros, $blocks) {
  7. // line 49
  8. yield " ";
  9. yield from $this->unwrap()->yieldBlock('sectionContent', $context, $blocks);
  10. yield from [];
  11. })())) ? '' : new Markup($tmp, $this->env->getCharset());
in vendor/twig/twig/src/Template.php -> doDisplay (line 402)
  1. {
  2. $context += $this->env->getGlobals();
  3. $blocks = array_merge($this->blocks, $blocks);
  4. try {
  5. yield from $this->doDisplay($context, $blocks);
  6. } catch (Error $e) {
  7. if (!$e->getSourceContext()) {
  8. $e->setSourceContext($this->getSourceContext());
  9. }
Template->yield(array('posts' => array(object(Post), object(Post), object(Post)), 'section' => object(PostListSection), 'nav' => array('display' => false, 'searchTerm' => array('tag' => null, 'search' => ''), 'displayCount' => false, 'count' => 3, 'current' => 1, 'max' => 1, 'next' => '/articles/%5Bpost_slug%5D?p=2', 'prev' => '/articles/%5Bpost_slug%5D?p=0'), 'hasAnyMedia' => false, 'postListPage' => object(Page), 'postTemplatePage' => object(Page), 'section_link_style' => object(LinkStyle), 'section_link_style_class' => 'link-style-5ecc267', 'section_link_element_id' => 'link-element-2c8dcbb', 'controller' => object(PostListSectionController), 'app' => object(AppVariable)), array('sectionTitle' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionTitle'), 'sectionContentBefore' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionContentBefore'), 'sectionContent' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_sectionContent'), 'sectionLinks' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionLinks'), 'sectionBeforeContainer' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionBeforeContainer'), 'container' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_container'), 'sectionContainer' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionContainer'), 'sectionContainerContents' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionContainerContents'), 'animations' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_animations'), 'sectionAnimations' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_sectionAnimations'), 'arrowEffect' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_arrowEffect'), 'item' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_item'))) in /tmp/symfony_cache/dev/twig/f2/f26b536a4604035358703c4a0a450a98.php (line 55)
  1. $__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
  2. $__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template", "site/section/blog/post_list.html.twig"));
  3. $this->parent = $this->load("site/section/base.html.twig", 1);
  4. yield from $this->parent->unwrap()->yield($context, array_merge($this->blocks, $blocks));
  5. $__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
  6. $__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
in vendor/twig/twig/src/Template.php -> doDisplay (line 402)
  1. {
  2. $context += $this->env->getGlobals();
  3. $blocks = array_merge($this->blocks, $blocks);
  4. try {
  5. yield from $this->doDisplay($context, $blocks);
  6. } catch (Error $e) {
  7. if (!$e->getSourceContext()) {
  8. $e->setSourceContext($this->getSourceContext());
  9. }
  1. return $this->blocks;
  2. }
  3. public function display(array $context, array $blocks = []): void
  4. {
  5. foreach ($this->yield($context, $blocks) as $data) {
  6. echo $data;
  7. }
  8. }
  9. public function render(array $context): string
in vendor/twig/twig/src/Template.php -> display (line 373)
  1. ob_start();
  2. } else {
  3. ob_start(function () { return ''; });
  4. }
  5. try {
  6. $this->display($context);
  7. } catch (\Throwable $e) {
  8. while (ob_get_level() > $level) {
  9. ob_end_clean();
  10. }
  1. yield from $this->template->yieldBlock($name, $context);
  2. }
  3. public function render(array $context = []): string
  4. {
  5. return $this->template->render($context);
  6. }
  7. /**
  8. * @return void
  9. */
  1. * @throws SyntaxError When an error occurred during compilation
  2. * @throws RuntimeError When an error occurred during rendering
  3. */
  4. public function render($name, array $context = []): string
  5. {
  6. return $this->load($name)->render($context);
  7. }
  8. /**
  9. * Displays a template.
  10. *
Environment->render('site/section/blog/post_list.html.twig', array('posts' => array(object(Post), object(Post), object(Post)), 'section' => object(PostListSection), 'nav' => array('display' => false, 'searchTerm' => array('tag' => null, 'search' => ''), 'displayCount' => false, 'count' => 3, 'current' => 1, 'max' => 1, 'next' => '/articles/%5Bpost_slug%5D?p=2', 'prev' => '/articles/%5Bpost_slug%5D?p=0'), 'hasAnyMedia' => false, 'postListPage' => object(Page), 'postTemplatePage' => object(Page), 'section_link_style' => object(LinkStyle), 'section_link_style_class' => 'link-style-5ecc267', 'section_link_element_id' => 'link-element-2c8dcbb', 'controller' => object(PostListSectionController))) in src/Section/SectionController.php (line 267)
  1. return $this->renderView($view, $parameters);
  2. }
  3. protected function renderView(string $view, array $parameters = []): string
  4. {
  5. return $this->twig->render($view, $parameters);
  6. }
  7. protected function createForm(string $type, mixed $data = null, array $options = []): FormInterface
  8. {
  9. return $this->form->create($type, $data, $options);
SectionController->renderView('site/section/blog/post_list.html.twig', array('posts' => array(object(Post), object(Post), object(Post)), 'section' => object(PostListSection), 'nav' => array('display' => false, 'searchTerm' => array('tag' => null, 'search' => ''), 'displayCount' => false, 'count' => 3, 'current' => 1, 'max' => 1, 'next' => '/articles/%5Bpost_slug%5D?p=2', 'prev' => '/articles/%5Bpost_slug%5D?p=0'), 'hasAnyMedia' => false, 'postListPage' => object(Page), 'postTemplatePage' => object(Page), 'section_link_style' => object(LinkStyle), 'section_link_style_class' => 'link-style-5ecc267', 'section_link_element_id' => 'link-element-2c8dcbb', 'controller' => object(PostListSectionController))) in src/Section/SectionController.php (line 262)
  1. if (!array_key_exists("controller", $parameters)) {
  2. $parameters["controller"] = $this;
  3. }
  4. return $this->renderView($view, $parameters);
  5. }
  6. protected function renderView(string $view, array $parameters = []): string
  7. {
  8. return $this->twig->render($view, $parameters);
SectionController->renderSectionView('site/section/blog/post_list.html.twig', array('posts' => array(object(Post), object(Post), object(Post)), 'section' => object(PostListSection), 'nav' => array('display' => false, 'searchTerm' => array('tag' => null, 'search' => ''), 'displayCount' => false, 'count' => 3, 'current' => 1, 'max' => 1, 'next' => '/articles/%5Bpost_slug%5D?p=2', 'prev' => '/articles/%5Bpost_slug%5D?p=0'), 'hasAnyMedia' => false, 'postListPage' => object(Page), 'postTemplatePage' => object(Page), 'section_link_style' => object(LinkStyle), 'section_link_style_class' => 'link-style-5ecc267', 'section_link_element_id' => 'link-element-2c8dcbb', 'controller' => object(PostListSectionController))) in src/Section/Module/PostListSectionController.php (line 159)
  1. }
  2. $section->setItems($posts);
  3. $page = $section->getPage() ?? $section->getPageFromParents() ?? $postListPage;
  4. return $this->renderSectionView($this->viewPath('blog/post_list'), [
  5. 'posts' => $posts,
  6. 'section' => $section,
  7. 'nav' => [
  8. 'display' => $section->getDisposition() === Section::DISPOSITION_DEFAULT,
  9. 'searchTerm' => [
PostListSectionController->getView(object(PostListSection)) in src/Service/PageRenderer.php (line 278)
  1. AssetExtension::$enableLazyLoad = !$staticPage && $i > 3;
  2. $this->stopwatch->start('pageRenderer/forSection/twig');
  3. $sections[] = [
  4. "object" => $section,
  5. "html" => $sectionCtrl->getView($section)
  6. ];
  7. $sectionNames[] = $section::getType();
  8. $this->stopwatch->stop('pageRenderer/forSection/twig');
  9. // replace _current-section-id in custom js with the current section id
PageRenderer->showAction(object(Request), object(Site), object(Page)) in src/Controller/Frontend/FrontendController.php (line 172)
  1. if ($routingResult->page === null) {
  2. throw $this->createNotFoundException();
  3. }
  4. return $this->pageRenderer->showAction($request, $site, $routingResult->page);
  5. }
  6. /**
  7. * @param string|null $category
  8. * @return Response
  1. $this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);
  2. $controller = $event->getController();
  3. $arguments = $event->getArguments();
  4. // call controller
  5. $response = $controller(...$arguments);
  6. // view
  7. if (!$response instanceof Response) {
  8. $event = new ViewEvent($this, $request, $type, $response, $event);
  9. $this->dispatcher->dispatch($event, KernelEvents::VIEW);
  1. $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2. $this->requestStack->push($request);
  3. $response = null;
  4. try {
  5. return $response = $this->handleRaw($request, $type);
  6. } catch (\Throwable $e) {
  7. if ($e instanceof \Error && !$this->handleAllThrowables) {
  8. throw $e;
  9. }
  1. $this->boot();
  2. ++$this->requestStackSize;
  3. $this->resetServices = true;
  4. try {
  5. return $this->getHttpKernel()->handle($request, $type, $catch);
  6. } finally {
  7. --$this->requestStackSize;
  8. }
  9. }
  1. ) {
  2. }
  3. public function run(): int
  4. {
  5. $response = $this->kernel->handle($this->request);
  6. if (Kernel::VERSION_ID >= 60400) {
  7. $response->send(false);
  8. if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in vendor/autoload_runtime.php -> run (line 29)
  1. $app = $app(...$args);
  2. exit(
  3. $runtime
  4. ->getRunner($app)
  5. ->run()
  6. );
require_once('/app/vendor/autoload_runtime.php') in web/index.php (line 6)
  1. <?php
  2. use App\Kernel;
  3. use Symfony\Component\HttpFoundation\Request;
  4. require_once dirname(__DIR__) . '/vendor/autoload_runtime.php';
  5. if ($trustedProxies = $_SERVER['TRUSTED_PROXIES'] ?? $_ENV['TRUSTED_PROXIES'] ?? false) {
  6. Request::setTrustedProxies(explode(',', $trustedProxies), Request::HEADER_X_FORWARDED_TRAEFIK);
  7. }

TypeError

App\Twig\MediaExtension::mediaPath(): Argument #1 ($media) must be of type App\Doctrine\Entity\Site\Media, null given, called in /tmp/symfony_cache/dev/twig/f2/f26b536a4604035358703c4a0a450a98.php on line 361

  1. return [
  2. new TwigFunction('mediaIcon', $this->mediaSvgInline(...), ['is_safe' => ['html']]),
  3. ];
  4. }
  5. public function mediaPath(Media $media): string
  6. {
  7. return $this->mediaLinkUtils->publicMediaUrl($media);
  8. }
  9. public function photopeaUrl(Media $media): string
MediaExtension->mediaPath(null) in /tmp/symfony_cache/dev/twig/f2/f26b536a4604035358703c4a0a450a98.php (line 361)
  1. yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape(CoreExtension::getAttribute($this->env, $this->source, CoreExtension::getAttribute($this->env, $this->source, CoreExtension::getAttribute($this->env, $this->source, (isset($context["item"]) || array_key_exists("item", $context) ? $context["item"] : (function () { throw new RuntimeError('Variable "item" does not exist.', 99, $this->source); })()), "blog", [], "any", false, false, false, 99), "site", [], "any", false, false, false, 99), "name", [], "any", false, false, false, 99), "html", null, true);
  2. yield "\">
  3. <div itemprop=\"logo\" itemscope itemtype=\"https://schema.org/ImageObject\">
  4. <meta itemprop=\"url\" content=\"";
  5. // line 101
  6. yield $this->env->getRuntime('Twig\Runtime\EscaperRuntime')->escape($this->extensions['Symfony\Bridge\Twig\Extension\HttpFoundationExtension']->generateAbsoluteUrl($this->extensions['App\Twig\MediaExtension']->mediaPath(CoreExtension::getAttribute($this->env, $this->source, CoreExtension::getAttribute($this->env, $this->source, CoreExtension::getAttribute($this->env, $this->source, (isset($context["item"]) || array_key_exists("item", $context) ? $context["item"] : (function () { throw new RuntimeError('Variable "item" does not exist.', 101, $this->source); })()), "blog", [], "any", false, false, false, 101), "site", [], "any", false, false, false, 101), "logo", [], "any", false, false, false, 101))), "html", null, true);
  7. yield "\">
  8. </div>
  9. </div>
  10. <meta itemprop=\"dateModified\" content=\"";
in vendor/twig/twig/src/Template.php -> block_item (line 446)
  1. throw new \LogicException('A block must be a method on a \Twig\Template instance.');
  2. }
  3. if (null !== $template) {
  4. try {
  5. yield from $template->$block($context, $blocks);
  6. } catch (Error $e) {
  7. if (!$e->getSourceContext()) {
  8. $e->setSourceContext($template->getSourceContext());
  9. }
Template->yieldBlock('item', array('posts' => array(object(Post), object(Post), object(Post)), 'section' => object(PostListSection), 'nav' => array('display' => false, 'searchTerm' => array('tag' => null, 'search' => ''), 'displayCount' => false, 'count' => 3, 'current' => 1, 'max' => 1, 'next' => '/articles/%5Bpost_slug%5D?p=2', 'prev' => '/articles/%5Bpost_slug%5D?p=0'), 'hasAnyMedia' => false, 'postListPage' => object(Page), 'postTemplatePage' => object(Page), 'section_link_style' => object(LinkStyle), 'section_link_style_class' => 'link-style-5ecc267', 'section_link_element_id' => 'link-element-2c8dcbb', 'controller' => object(PostListSectionController), 'app' => object(AppVariable), 'sectionStyles' => object(SectionStyle), 'class' => array('link-style-5ecc267-section', 'link-element-2c8dcbb-section'), 'forceFixedLayout' => false, 'previousSection' => object(PostContentSection), 'hasLink' => false, 'header_content' => object(Markup), '_parent' => array('posts' => array(object(Post), object(Post), object(Post)), 'section' => object(PostListSection), 'nav' => array('display' => false, 'searchTerm' => array('tag' => null, 'search' => ''), 'displayCount' => false, 'count' => 3, 'current' => 1, 'max' => 1, 'next' => '/articles/%5Bpost_slug%5D?p=2', 'prev' => '/articles/%5Bpost_slug%5D?p=0'), 'hasAnyMedia' => false, 'postListPage' => object(Page), 'postTemplatePage' => object(Page), 'section_link_style' => object(LinkStyle), 'section_link_style_class' => 'link-style-5ecc267', 'section_link_element_id' => 'link-element-2c8dcbb', 'controller' => object(PostListSectionController), 'app' => object(AppVariable), 'sectionStyles' => object(SectionStyle), 'class' => array('link-style-5ecc267-section', 'link-element-2c8dcbb-section'), 'forceFixedLayout' => false, 'previousSection' => object(PostContentSection), 'hasLink' => false, 'header_content' => object(Markup)), '_seq' => array(object(Post), object(Post), object(Post)), 'loop' => array('parent' => array('posts' => array(object(Post), object(Post), object(Post)), 'section' => object(PostListSection), 'nav' => array('display' => false, 'searchTerm' => array('tag' => null, 'search' => ''), 'displayCount' => false, 'count' => 3, 'current' => 1, 'max' => 1, 'next' => '/articles/%5Bpost_slug%5D?p=2', 'prev' => '/articles/%5Bpost_slug%5D?p=0'), 'hasAnyMedia' => false, 'postListPage' => object(Page), 'postTemplatePage' => object(Page), 'section_link_style' => object(LinkStyle), 'section_link_style_class' => 'link-style-5ecc267', 'section_link_element_id' => 'link-element-2c8dcbb', 'controller' => object(PostListSectionController), 'app' => object(AppVariable), 'sectionStyles' => object(SectionStyle), 'class' => array('link-style-5ecc267-section', 'link-element-2c8dcbb-section'), 'forceFixedLayout' => false, 'previousSection' => object(PostContentSection), 'hasLink' => false, 'header_content' => object(Markup)), 'index0' => 0, 'index' => 1, 'first' => true, 'revindex0' => 2, 'revindex' => 3, 'length' => 3, 'last' => false), 'item' => object(Post), '_key' => 0), array('sectionTitle' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionTitle'), 'sectionContentBefore' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionContentBefore'), 'sectionContent' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_sectionContent'), 'sectionLinks' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionLinks'), 'sectionBeforeContainer' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionBeforeContainer'), 'container' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_container'), 'sectionContainer' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionContainer'), 'sectionContainerContents' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionContainerContents'), 'animations' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_animations'), 'sectionAnimations' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_sectionAnimations'), 'arrowEffect' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_arrowEffect'), 'item' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_item'))) in /tmp/symfony_cache/dev/twig/f2/f26b536a4604035358703c4a0a450a98.php (line 513)
  1. $context['loop']['last'] = 1 === $length;
  2. }
  3. foreach ($context['_seq'] as $context["_key"] => $context["item"]) {
  4. // line 149
  5. yield " ";
  6. yield from $this->unwrap()->yieldBlock("item", $context, $blocks);
  7. yield "
  8. ";
  9. ++$context['loop']['index0'];
  10. ++$context['loop']['index'];
  11. $context['loop']['first'] = false;
in vendor/twig/twig/src/Template.php -> block_sectionContent (line 446)
  1. throw new \LogicException('A block must be a method on a \Twig\Template instance.');
  2. }
  3. if (null !== $template) {
  4. try {
  5. yield from $template->$block($context, $blocks);
  6. } catch (Error $e) {
  7. if (!$e->getSourceContext()) {
  8. $e->setSourceContext($template->getSourceContext());
  9. }
Template->yieldBlock('sectionContent', array('posts' => array(object(Post), object(Post), object(Post)), 'section' => object(PostListSection), 'nav' => array('display' => false, 'searchTerm' => array('tag' => null, 'search' => ''), 'displayCount' => false, 'count' => 3, 'current' => 1, 'max' => 1, 'next' => '/articles/%5Bpost_slug%5D?p=2', 'prev' => '/articles/%5Bpost_slug%5D?p=0'), 'hasAnyMedia' => false, 'postListPage' => object(Page), 'postTemplatePage' => object(Page), 'section_link_style' => object(LinkStyle), 'section_link_style_class' => 'link-style-5ecc267', 'section_link_element_id' => 'link-element-2c8dcbb', 'controller' => object(PostListSectionController), 'app' => object(AppVariable), 'sectionStyles' => object(SectionStyle), 'class' => array('link-style-5ecc267-section', 'link-element-2c8dcbb-section'), 'forceFixedLayout' => false, 'previousSection' => object(PostContentSection), 'hasLink' => false, 'header_content' => object(Markup)), array('sectionTitle' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionTitle'), 'sectionContentBefore' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionContentBefore'), 'sectionContent' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_sectionContent'), 'sectionLinks' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionLinks'), 'sectionBeforeContainer' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionBeforeContainer'), 'container' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_container'), 'sectionContainer' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionContainer'), 'sectionContainerContents' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionContainerContents'), 'animations' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_animations'), 'sectionAnimations' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_sectionAnimations'), 'arrowEffect' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_arrowEffect'), 'item' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_item'))) in /tmp/symfony_cache/dev/twig/b2/b2e10f2df87d208f3eb1d56b48cf0fdf.php (line 151)
  1. ";
  2. // line 48
  3. $context["section_content"] = ('' === $tmp = \Twig\Extension\CoreExtension::captureOutput((function () use (&$context, $macros, $blocks) {
  4. // line 49
  5. yield " ";
  6. yield from $this->unwrap()->yieldBlock('sectionContent', $context, $blocks);
  7. yield from [];
  8. })())) ? '' : new Markup($tmp, $this->env->getCharset());
  9. // line 51
  10. yield "
  11. ";
in vendor/twig/twig/src/Extension/CoreExtension.php -> {closure:__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e::doDisplay():148} (line 2106)
  1. {
  2. $level = ob_get_level();
  3. ob_start();
  4. try {
  5. foreach ($body as $data) {
  6. echo $data;
  7. }
  8. } catch (\Throwable $e) {
  9. while (ob_get_level() > $level) {
  10. ob_end_clean();
CoreExtension::captureOutput(object(Generator)) in /tmp/symfony_cache/dev/twig/b2/b2e10f2df87d208f3eb1d56b48cf0fdf.php (line 148)
  1. })())) ? '' : new Markup($tmp, $this->env->getCharset());
  2. // line 47
  3. yield "
  4. ";
  5. // line 48
  6. $context["section_content"] = ('' === $tmp = \Twig\Extension\CoreExtension::captureOutput((function () use (&$context, $macros, $blocks) {
  7. // line 49
  8. yield " ";
  9. yield from $this->unwrap()->yieldBlock('sectionContent', $context, $blocks);
  10. yield from [];
  11. })())) ? '' : new Markup($tmp, $this->env->getCharset());
in vendor/twig/twig/src/Template.php -> doDisplay (line 402)
  1. {
  2. $context += $this->env->getGlobals();
  3. $blocks = array_merge($this->blocks, $blocks);
  4. try {
  5. yield from $this->doDisplay($context, $blocks);
  6. } catch (Error $e) {
  7. if (!$e->getSourceContext()) {
  8. $e->setSourceContext($this->getSourceContext());
  9. }
Template->yield(array('posts' => array(object(Post), object(Post), object(Post)), 'section' => object(PostListSection), 'nav' => array('display' => false, 'searchTerm' => array('tag' => null, 'search' => ''), 'displayCount' => false, 'count' => 3, 'current' => 1, 'max' => 1, 'next' => '/articles/%5Bpost_slug%5D?p=2', 'prev' => '/articles/%5Bpost_slug%5D?p=0'), 'hasAnyMedia' => false, 'postListPage' => object(Page), 'postTemplatePage' => object(Page), 'section_link_style' => object(LinkStyle), 'section_link_style_class' => 'link-style-5ecc267', 'section_link_element_id' => 'link-element-2c8dcbb', 'controller' => object(PostListSectionController), 'app' => object(AppVariable)), array('sectionTitle' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionTitle'), 'sectionContentBefore' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionContentBefore'), 'sectionContent' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_sectionContent'), 'sectionLinks' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionLinks'), 'sectionBeforeContainer' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionBeforeContainer'), 'container' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_container'), 'sectionContainer' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionContainer'), 'sectionContainerContents' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionContainerContents'), 'animations' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_animations'), 'sectionAnimations' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_sectionAnimations'), 'arrowEffect' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_arrowEffect'), 'item' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_item'))) in /tmp/symfony_cache/dev/twig/f2/f26b536a4604035358703c4a0a450a98.php (line 55)
  1. $__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
  2. $__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template", "site/section/blog/post_list.html.twig"));
  3. $this->parent = $this->load("site/section/base.html.twig", 1);
  4. yield from $this->parent->unwrap()->yield($context, array_merge($this->blocks, $blocks));
  5. $__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
  6. $__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
in vendor/twig/twig/src/Template.php -> doDisplay (line 402)
  1. {
  2. $context += $this->env->getGlobals();
  3. $blocks = array_merge($this->blocks, $blocks);
  4. try {
  5. yield from $this->doDisplay($context, $blocks);
  6. } catch (Error $e) {
  7. if (!$e->getSourceContext()) {
  8. $e->setSourceContext($this->getSourceContext());
  9. }
  1. return $this->blocks;
  2. }
  3. public function display(array $context, array $blocks = []): void
  4. {
  5. foreach ($this->yield($context, $blocks) as $data) {
  6. echo $data;
  7. }
  8. }
  9. public function render(array $context): string
in vendor/twig/twig/src/Template.php -> display (line 373)
  1. ob_start();
  2. } else {
  3. ob_start(function () { return ''; });
  4. }
  5. try {
  6. $this->display($context);
  7. } catch (\Throwable $e) {
  8. while (ob_get_level() > $level) {
  9. ob_end_clean();
  10. }
  1. yield from $this->template->yieldBlock($name, $context);
  2. }
  3. public function render(array $context = []): string
  4. {
  5. return $this->template->render($context);
  6. }
  7. /**
  8. * @return void
  9. */
  1. * @throws SyntaxError When an error occurred during compilation
  2. * @throws RuntimeError When an error occurred during rendering
  3. */
  4. public function render($name, array $context = []): string
  5. {
  6. return $this->load($name)->render($context);
  7. }
  8. /**
  9. * Displays a template.
  10. *
Environment->render('site/section/blog/post_list.html.twig', array('posts' => array(object(Post), object(Post), object(Post)), 'section' => object(PostListSection), 'nav' => array('display' => false, 'searchTerm' => array('tag' => null, 'search' => ''), 'displayCount' => false, 'count' => 3, 'current' => 1, 'max' => 1, 'next' => '/articles/%5Bpost_slug%5D?p=2', 'prev' => '/articles/%5Bpost_slug%5D?p=0'), 'hasAnyMedia' => false, 'postListPage' => object(Page), 'postTemplatePage' => object(Page), 'section_link_style' => object(LinkStyle), 'section_link_style_class' => 'link-style-5ecc267', 'section_link_element_id' => 'link-element-2c8dcbb', 'controller' => object(PostListSectionController))) in src/Section/SectionController.php (line 267)
  1. return $this->renderView($view, $parameters);
  2. }
  3. protected function renderView(string $view, array $parameters = []): string
  4. {
  5. return $this->twig->render($view, $parameters);
  6. }
  7. protected function createForm(string $type, mixed $data = null, array $options = []): FormInterface
  8. {
  9. return $this->form->create($type, $data, $options);
SectionController->renderView('site/section/blog/post_list.html.twig', array('posts' => array(object(Post), object(Post), object(Post)), 'section' => object(PostListSection), 'nav' => array('display' => false, 'searchTerm' => array('tag' => null, 'search' => ''), 'displayCount' => false, 'count' => 3, 'current' => 1, 'max' => 1, 'next' => '/articles/%5Bpost_slug%5D?p=2', 'prev' => '/articles/%5Bpost_slug%5D?p=0'), 'hasAnyMedia' => false, 'postListPage' => object(Page), 'postTemplatePage' => object(Page), 'section_link_style' => object(LinkStyle), 'section_link_style_class' => 'link-style-5ecc267', 'section_link_element_id' => 'link-element-2c8dcbb', 'controller' => object(PostListSectionController))) in src/Section/SectionController.php (line 262)
  1. if (!array_key_exists("controller", $parameters)) {
  2. $parameters["controller"] = $this;
  3. }
  4. return $this->renderView($view, $parameters);
  5. }
  6. protected function renderView(string $view, array $parameters = []): string
  7. {
  8. return $this->twig->render($view, $parameters);
SectionController->renderSectionView('site/section/blog/post_list.html.twig', array('posts' => array(object(Post), object(Post), object(Post)), 'section' => object(PostListSection), 'nav' => array('display' => false, 'searchTerm' => array('tag' => null, 'search' => ''), 'displayCount' => false, 'count' => 3, 'current' => 1, 'max' => 1, 'next' => '/articles/%5Bpost_slug%5D?p=2', 'prev' => '/articles/%5Bpost_slug%5D?p=0'), 'hasAnyMedia' => false, 'postListPage' => object(Page), 'postTemplatePage' => object(Page), 'section_link_style' => object(LinkStyle), 'section_link_style_class' => 'link-style-5ecc267', 'section_link_element_id' => 'link-element-2c8dcbb', 'controller' => object(PostListSectionController))) in src/Section/Module/PostListSectionController.php (line 159)
  1. }
  2. $section->setItems($posts);
  3. $page = $section->getPage() ?? $section->getPageFromParents() ?? $postListPage;
  4. return $this->renderSectionView($this->viewPath('blog/post_list'), [
  5. 'posts' => $posts,
  6. 'section' => $section,
  7. 'nav' => [
  8. 'display' => $section->getDisposition() === Section::DISPOSITION_DEFAULT,
  9. 'searchTerm' => [
PostListSectionController->getView(object(PostListSection)) in src/Service/PageRenderer.php (line 278)
  1. AssetExtension::$enableLazyLoad = !$staticPage && $i > 3;
  2. $this->stopwatch->start('pageRenderer/forSection/twig');
  3. $sections[] = [
  4. "object" => $section,
  5. "html" => $sectionCtrl->getView($section)
  6. ];
  7. $sectionNames[] = $section::getType();
  8. $this->stopwatch->stop('pageRenderer/forSection/twig');
  9. // replace _current-section-id in custom js with the current section id
PageRenderer->showAction(object(Request), object(Site), object(Page)) in src/Controller/Frontend/FrontendController.php (line 172)
  1. if ($routingResult->page === null) {
  2. throw $this->createNotFoundException();
  3. }
  4. return $this->pageRenderer->showAction($request, $site, $routingResult->page);
  5. }
  6. /**
  7. * @param string|null $category
  8. * @return Response
  1. $this->dispatcher->dispatch($event, KernelEvents::CONTROLLER_ARGUMENTS);
  2. $controller = $event->getController();
  3. $arguments = $event->getArguments();
  4. // call controller
  5. $response = $controller(...$arguments);
  6. // view
  7. if (!$response instanceof Response) {
  8. $event = new ViewEvent($this, $request, $type, $response, $event);
  9. $this->dispatcher->dispatch($event, KernelEvents::VIEW);
  1. $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  2. $this->requestStack->push($request);
  3. $response = null;
  4. try {
  5. return $response = $this->handleRaw($request, $type);
  6. } catch (\Throwable $e) {
  7. if ($e instanceof \Error && !$this->handleAllThrowables) {
  8. throw $e;
  9. }
  1. $this->boot();
  2. ++$this->requestStackSize;
  3. $this->resetServices = true;
  4. try {
  5. return $this->getHttpKernel()->handle($request, $type, $catch);
  6. } finally {
  7. --$this->requestStackSize;
  8. }
  9. }
  1. ) {
  2. }
  3. public function run(): int
  4. {
  5. $response = $this->kernel->handle($this->request);
  6. if (Kernel::VERSION_ID >= 60400) {
  7. $response->send(false);
  8. if (\function_exists('fastcgi_finish_request') && !$this->debug) {
in vendor/autoload_runtime.php -> run (line 29)
  1. $app = $app(...$args);
  2. exit(
  3. $runtime
  4. ->getRunner($app)
  5. ->run()
  6. );
require_once('/app/vendor/autoload_runtime.php') in web/index.php (line 6)
  1. <?php
  2. use App\Kernel;
  3. use Symfony\Component\HttpFoundation\Request;
  4. require_once dirname(__DIR__) . '/vendor/autoload_runtime.php';
  5. if ($trustedProxies = $_SERVER['TRUSTED_PROXIES'] ?? $_ENV['TRUSTED_PROXIES'] ?? false) {
  6. Request::setTrustedProxies(explode(',', $trustedProxies), Request::HEADER_X_FORWARDED_TRAEFIK);
  7. }

Logs 4

Level Channel Message
ERROR 07:25:04 deprecation User Deprecated: Class "Doctrine\ORM\Proxy\Autoloader" is deprecated. Use native lazy objects instead. (Autoloader.php:74 called by DoctrineBundle.php:136, https://github.com/doctrine/orm/pull/12005, package doctrine/orm)
{
    "exception": {}
}
INFO 07:25:04 request Matched route "_profiler".
{
    "route": "_profiler",
    "route_parameters": {
        "_route": "_profiler",
        "_controller": "web_profiler.controller.profiler::panelAction",
        "token": "bf11f7"
    },
    "request_uri": "https://www.jgonzalez.eu/_profiler/bf11f7",
    "method": "GET"
}
ERROR 07:25:04 deprecation User Deprecated: Since symfony/var-exporter 7.3: Using ProxyHelper::generateLazyGhost() is deprecated, use native lazy objects instead.
{
    "exception": {}
}
ERROR 07:25:04 deprecation User Deprecated: Since symfony/var-exporter 7.3: The "Symfony\Component\VarExporter\LazyGhostTrait" trait is deprecated, use native lazy objects instead.
{
    "exception": {}
}
ERROR 07:25:04 deprecation User Deprecated: Since symfony/var-exporter 7.3: Using ProxyHelper::generateLazyGhost() is deprecated, use native lazy objects instead.
{
    "exception": {}
}

Stack Traces 2

[2/2] RuntimeError
Twig\Error\RuntimeError:
An exception has been thrown during the rendering of a template ("App\Twig\MediaExtension::mediaPath(): Argument #1 ($media) must be of type App\Doctrine\Entity\Site\Media, null given, called in /tmp/symfony_cache/dev/twig/f2/f26b536a4604035358703c4a0a450a98.php on line 361") in "site/section/blog/post_list.html.twig" at line 101.

  at templates/site/section/blog/post_list.html.twig:101
  at Twig\Template->yieldBlock('item', array('posts' => array(object(Post), object(Post), object(Post)), 'section' => object(PostListSection), 'nav' => array('display' => false, 'searchTerm' => array('tag' => null, 'search' => ''), 'displayCount' => false, 'count' => 3, 'current' => 1, 'max' => 1, 'next' => '/articles/%5Bpost_slug%5D?p=2', 'prev' => '/articles/%5Bpost_slug%5D?p=0'), 'hasAnyMedia' => false, 'postListPage' => object(Page), 'postTemplatePage' => object(Page), 'section_link_style' => object(LinkStyle), 'section_link_style_class' => 'link-style-5ecc267', 'section_link_element_id' => 'link-element-2c8dcbb', 'controller' => object(PostListSectionController), 'app' => object(AppVariable), 'sectionStyles' => object(SectionStyle), 'class' => array('link-style-5ecc267-section', 'link-element-2c8dcbb-section'), 'forceFixedLayout' => false, 'previousSection' => object(PostContentSection), 'hasLink' => false, 'header_content' => object(Markup), '_parent' => array('posts' => array(object(Post), object(Post), object(Post)), 'section' => object(PostListSection), 'nav' => array('display' => false, 'searchTerm' => array('tag' => null, 'search' => ''), 'displayCount' => false, 'count' => 3, 'current' => 1, 'max' => 1, 'next' => '/articles/%5Bpost_slug%5D?p=2', 'prev' => '/articles/%5Bpost_slug%5D?p=0'), 'hasAnyMedia' => false, 'postListPage' => object(Page), 'postTemplatePage' => object(Page), 'section_link_style' => object(LinkStyle), 'section_link_style_class' => 'link-style-5ecc267', 'section_link_element_id' => 'link-element-2c8dcbb', 'controller' => object(PostListSectionController), 'app' => object(AppVariable), 'sectionStyles' => object(SectionStyle), 'class' => array('link-style-5ecc267-section', 'link-element-2c8dcbb-section'), 'forceFixedLayout' => false, 'previousSection' => object(PostContentSection), 'hasLink' => false, 'header_content' => object(Markup)), '_seq' => array(object(Post), object(Post), object(Post)), 'loop' => array('parent' => array('posts' => array(object(Post), object(Post), object(Post)), 'section' => object(PostListSection), 'nav' => array('display' => false, 'searchTerm' => array('tag' => null, 'search' => ''), 'displayCount' => false, 'count' => 3, 'current' => 1, 'max' => 1, 'next' => '/articles/%5Bpost_slug%5D?p=2', 'prev' => '/articles/%5Bpost_slug%5D?p=0'), 'hasAnyMedia' => false, 'postListPage' => object(Page), 'postTemplatePage' => object(Page), 'section_link_style' => object(LinkStyle), 'section_link_style_class' => 'link-style-5ecc267', 'section_link_element_id' => 'link-element-2c8dcbb', 'controller' => object(PostListSectionController), 'app' => object(AppVariable), 'sectionStyles' => object(SectionStyle), 'class' => array('link-style-5ecc267-section', 'link-element-2c8dcbb-section'), 'forceFixedLayout' => false, 'previousSection' => object(PostContentSection), 'hasLink' => false, 'header_content' => object(Markup)), 'index0' => 0, 'index' => 1, 'first' => true, 'revindex0' => 2, 'revindex' => 3, 'length' => 3, 'last' => false), 'item' => object(Post), '_key' => 0), array('sectionTitle' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionTitle'), 'sectionContentBefore' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionContentBefore'), 'sectionContent' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_sectionContent'), 'sectionLinks' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionLinks'), 'sectionBeforeContainer' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionBeforeContainer'), 'container' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_container'), 'sectionContainer' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionContainer'), 'sectionContainerContents' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionContainerContents'), 'animations' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_animations'), 'sectionAnimations' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_sectionAnimations'), 'arrowEffect' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_arrowEffect'), 'item' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_item')))
     (/tmp/symfony_cache/dev/twig/f2/f26b536a4604035358703c4a0a450a98.php:513)
  at __TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4->block_sectionContent(array('posts' => array(object(Post), object(Post), object(Post)), 'section' => object(PostListSection), 'nav' => array('display' => false, 'searchTerm' => array('tag' => null, 'search' => ''), 'displayCount' => false, 'count' => 3, 'current' => 1, 'max' => 1, 'next' => '/articles/%5Bpost_slug%5D?p=2', 'prev' => '/articles/%5Bpost_slug%5D?p=0'), 'hasAnyMedia' => false, 'postListPage' => object(Page), 'postTemplatePage' => object(Page), 'section_link_style' => object(LinkStyle), 'section_link_style_class' => 'link-style-5ecc267', 'section_link_element_id' => 'link-element-2c8dcbb', 'controller' => object(PostListSectionController), 'app' => object(AppVariable), 'sectionStyles' => object(SectionStyle), 'class' => array('link-style-5ecc267-section', 'link-element-2c8dcbb-section'), 'forceFixedLayout' => false, 'previousSection' => object(PostContentSection), 'hasLink' => false, 'header_content' => object(Markup), '_parent' => array('posts' => array(object(Post), object(Post), object(Post)), 'section' => object(PostListSection), 'nav' => array('display' => false, 'searchTerm' => array('tag' => null, 'search' => ''), 'displayCount' => false, 'count' => 3, 'current' => 1, 'max' => 1, 'next' => '/articles/%5Bpost_slug%5D?p=2', 'prev' => '/articles/%5Bpost_slug%5D?p=0'), 'hasAnyMedia' => false, 'postListPage' => object(Page), 'postTemplatePage' => object(Page), 'section_link_style' => object(LinkStyle), 'section_link_style_class' => 'link-style-5ecc267', 'section_link_element_id' => 'link-element-2c8dcbb', 'controller' => object(PostListSectionController), 'app' => object(AppVariable), 'sectionStyles' => object(SectionStyle), 'class' => array('link-style-5ecc267-section', 'link-element-2c8dcbb-section'), 'forceFixedLayout' => false, 'previousSection' => object(PostContentSection), 'hasLink' => false, 'header_content' => object(Markup)), '_seq' => array(object(Post), object(Post), object(Post)), 'loop' => array('parent' => array('posts' => array(object(Post), object(Post), object(Post)), 'section' => object(PostListSection), 'nav' => array('display' => false, 'searchTerm' => array('tag' => null, 'search' => ''), 'displayCount' => false, 'count' => 3, 'current' => 1, 'max' => 1, 'next' => '/articles/%5Bpost_slug%5D?p=2', 'prev' => '/articles/%5Bpost_slug%5D?p=0'), 'hasAnyMedia' => false, 'postListPage' => object(Page), 'postTemplatePage' => object(Page), 'section_link_style' => object(LinkStyle), 'section_link_style_class' => 'link-style-5ecc267', 'section_link_element_id' => 'link-element-2c8dcbb', 'controller' => object(PostListSectionController), 'app' => object(AppVariable), 'sectionStyles' => object(SectionStyle), 'class' => array('link-style-5ecc267-section', 'link-element-2c8dcbb-section'), 'forceFixedLayout' => false, 'previousSection' => object(PostContentSection), 'hasLink' => false, 'header_content' => object(Markup)), 'index0' => 0, 'index' => 1, 'first' => true, 'revindex0' => 2, 'revindex' => 3, 'length' => 3, 'last' => false), 'item' => object(Post), '_key' => 0), array('sectionTitle' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionTitle'), 'sectionContentBefore' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionContentBefore'), 'sectionContent' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_sectionContent'), 'sectionLinks' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionLinks'), 'sectionBeforeContainer' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionBeforeContainer'), 'container' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_container'), 'sectionContainer' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionContainer'), 'sectionContainerContents' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionContainerContents'), 'animations' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_animations'), 'sectionAnimations' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_sectionAnimations'), 'arrowEffect' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_arrowEffect'), 'item' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_item')))
     (vendor/twig/twig/src/Template.php:446)
  at Twig\Template->yieldBlock('sectionContent', array('posts' => array(object(Post), object(Post), object(Post)), 'section' => object(PostListSection), 'nav' => array('display' => false, 'searchTerm' => array('tag' => null, 'search' => ''), 'displayCount' => false, 'count' => 3, 'current' => 1, 'max' => 1, 'next' => '/articles/%5Bpost_slug%5D?p=2', 'prev' => '/articles/%5Bpost_slug%5D?p=0'), 'hasAnyMedia' => false, 'postListPage' => object(Page), 'postTemplatePage' => object(Page), 'section_link_style' => object(LinkStyle), 'section_link_style_class' => 'link-style-5ecc267', 'section_link_element_id' => 'link-element-2c8dcbb', 'controller' => object(PostListSectionController), 'app' => object(AppVariable), 'sectionStyles' => object(SectionStyle), 'class' => array('link-style-5ecc267-section', 'link-element-2c8dcbb-section'), 'forceFixedLayout' => false, 'previousSection' => object(PostContentSection), 'hasLink' => false, 'header_content' => object(Markup)), array('sectionTitle' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionTitle'), 'sectionContentBefore' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionContentBefore'), 'sectionContent' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_sectionContent'), 'sectionLinks' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionLinks'), 'sectionBeforeContainer' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionBeforeContainer'), 'container' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_container'), 'sectionContainer' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionContainer'), 'sectionContainerContents' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionContainerContents'), 'animations' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_animations'), 'sectionAnimations' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_sectionAnimations'), 'arrowEffect' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_arrowEffect'), 'item' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_item')))
     (/tmp/symfony_cache/dev/twig/b2/b2e10f2df87d208f3eb1d56b48cf0fdf.php:151)
  at __TwigTemplate_bdf29666542b8a2ad5a7a981656a632e->{closure:__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e::doDisplay():148}()
     (vendor/twig/twig/src/Extension/CoreExtension.php:2106)
  at Twig\Extension\CoreExtension::captureOutput(object(Generator))
     (/tmp/symfony_cache/dev/twig/b2/b2e10f2df87d208f3eb1d56b48cf0fdf.php:148)
  at __TwigTemplate_bdf29666542b8a2ad5a7a981656a632e->doDisplay(array('posts' => array(object(Post), object(Post), object(Post)), 'section' => object(PostListSection), 'nav' => array('display' => false, 'searchTerm' => array('tag' => null, 'search' => ''), 'displayCount' => false, 'count' => 3, 'current' => 1, 'max' => 1, 'next' => '/articles/%5Bpost_slug%5D?p=2', 'prev' => '/articles/%5Bpost_slug%5D?p=0'), 'hasAnyMedia' => false, 'postListPage' => object(Page), 'postTemplatePage' => object(Page), 'section_link_style' => object(LinkStyle), 'section_link_style_class' => 'link-style-5ecc267', 'section_link_element_id' => 'link-element-2c8dcbb', 'controller' => object(PostListSectionController), 'app' => object(AppVariable), 'sectionStyles' => object(SectionStyle), 'class' => array('link-style-5ecc267-section', 'link-element-2c8dcbb-section'), 'forceFixedLayout' => false, 'previousSection' => object(PostContentSection), 'hasLink' => false, 'header_content' => object(Markup)), array('sectionTitle' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionTitle'), 'sectionContentBefore' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionContentBefore'), 'sectionContent' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_sectionContent'), 'sectionLinks' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionLinks'), 'sectionBeforeContainer' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionBeforeContainer'), 'container' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_container'), 'sectionContainer' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionContainer'), 'sectionContainerContents' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionContainerContents'), 'animations' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_animations'), 'sectionAnimations' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_sectionAnimations'), 'arrowEffect' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_arrowEffect'), 'item' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_item')))
     (vendor/twig/twig/src/Template.php:402)
  at Twig\Template->yield(array('posts' => array(object(Post), object(Post), object(Post)), 'section' => object(PostListSection), 'nav' => array('display' => false, 'searchTerm' => array('tag' => null, 'search' => ''), 'displayCount' => false, 'count' => 3, 'current' => 1, 'max' => 1, 'next' => '/articles/%5Bpost_slug%5D?p=2', 'prev' => '/articles/%5Bpost_slug%5D?p=0'), 'hasAnyMedia' => false, 'postListPage' => object(Page), 'postTemplatePage' => object(Page), 'section_link_style' => object(LinkStyle), 'section_link_style_class' => 'link-style-5ecc267', 'section_link_element_id' => 'link-element-2c8dcbb', 'controller' => object(PostListSectionController), 'app' => object(AppVariable)), array('sectionTitle' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionTitle'), 'sectionContentBefore' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionContentBefore'), 'sectionContent' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_sectionContent'), 'sectionLinks' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionLinks'), 'sectionBeforeContainer' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionBeforeContainer'), 'container' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_container'), 'sectionContainer' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionContainer'), 'sectionContainerContents' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionContainerContents'), 'animations' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_animations'), 'sectionAnimations' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_sectionAnimations'), 'arrowEffect' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_arrowEffect'), 'item' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_item')))
     (/tmp/symfony_cache/dev/twig/f2/f26b536a4604035358703c4a0a450a98.php:55)
  at __TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4->doDisplay(array('posts' => array(object(Post), object(Post), object(Post)), 'section' => object(PostListSection), 'nav' => array('display' => false, 'searchTerm' => array('tag' => null, 'search' => ''), 'displayCount' => false, 'count' => 3, 'current' => 1, 'max' => 1, 'next' => '/articles/%5Bpost_slug%5D?p=2', 'prev' => '/articles/%5Bpost_slug%5D?p=0'), 'hasAnyMedia' => false, 'postListPage' => object(Page), 'postTemplatePage' => object(Page), 'section_link_style' => object(LinkStyle), 'section_link_style_class' => 'link-style-5ecc267', 'section_link_element_id' => 'link-element-2c8dcbb', 'controller' => object(PostListSectionController), 'app' => object(AppVariable)), array('item' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_item'), 'sectionContent' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_sectionContent'), 'sectionAnimations' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_sectionAnimations')))
     (vendor/twig/twig/src/Template.php:402)
  at Twig\Template->yield(array('posts' => array(object(Post), object(Post), object(Post)), 'section' => object(PostListSection), 'nav' => array('display' => false, 'searchTerm' => array('tag' => null, 'search' => ''), 'displayCount' => false, 'count' => 3, 'current' => 1, 'max' => 1, 'next' => '/articles/%5Bpost_slug%5D?p=2', 'prev' => '/articles/%5Bpost_slug%5D?p=0'), 'hasAnyMedia' => false, 'postListPage' => object(Page), 'postTemplatePage' => object(Page), 'section_link_style' => object(LinkStyle), 'section_link_style_class' => 'link-style-5ecc267', 'section_link_element_id' => 'link-element-2c8dcbb', 'controller' => object(PostListSectionController), 'app' => object(AppVariable)), array('item' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_item'), 'sectionContent' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_sectionContent'), 'sectionAnimations' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_sectionAnimations')))
     (vendor/twig/twig/src/Template.php:358)
  at Twig\Template->display(array('posts' => array(object(Post), object(Post), object(Post)), 'section' => object(PostListSection), 'nav' => array('display' => false, 'searchTerm' => array('tag' => null, 'search' => ''), 'displayCount' => false, 'count' => 3, 'current' => 1, 'max' => 1, 'next' => '/articles/%5Bpost_slug%5D?p=2', 'prev' => '/articles/%5Bpost_slug%5D?p=0'), 'hasAnyMedia' => false, 'postListPage' => object(Page), 'postTemplatePage' => object(Page), 'section_link_style' => object(LinkStyle), 'section_link_style_class' => 'link-style-5ecc267', 'section_link_element_id' => 'link-element-2c8dcbb', 'controller' => object(PostListSectionController)))
     (vendor/twig/twig/src/Template.php:373)
  at Twig\Template->render(array('posts' => array(object(Post), object(Post), object(Post)), 'section' => object(PostListSection), 'nav' => array('display' => false, 'searchTerm' => array('tag' => null, 'search' => ''), 'displayCount' => false, 'count' => 3, 'current' => 1, 'max' => 1, 'next' => '/articles/%5Bpost_slug%5D?p=2', 'prev' => '/articles/%5Bpost_slug%5D?p=0'), 'hasAnyMedia' => false, 'postListPage' => object(Page), 'postTemplatePage' => object(Page), 'section_link_style' => object(LinkStyle), 'section_link_style_class' => 'link-style-5ecc267', 'section_link_element_id' => 'link-element-2c8dcbb', 'controller' => object(PostListSectionController)))
     (vendor/twig/twig/src/TemplateWrapper.php:51)
  at Twig\TemplateWrapper->render(array('posts' => array(object(Post), object(Post), object(Post)), 'section' => object(PostListSection), 'nav' => array('display' => false, 'searchTerm' => array('tag' => null, 'search' => ''), 'displayCount' => false, 'count' => 3, 'current' => 1, 'max' => 1, 'next' => '/articles/%5Bpost_slug%5D?p=2', 'prev' => '/articles/%5Bpost_slug%5D?p=0'), 'hasAnyMedia' => false, 'postListPage' => object(Page), 'postTemplatePage' => object(Page), 'section_link_style' => object(LinkStyle), 'section_link_style_class' => 'link-style-5ecc267', 'section_link_element_id' => 'link-element-2c8dcbb', 'controller' => object(PostListSectionController)))
     (vendor/twig/twig/src/Environment.php:333)
  at Twig\Environment->render('site/section/blog/post_list.html.twig', array('posts' => array(object(Post), object(Post), object(Post)), 'section' => object(PostListSection), 'nav' => array('display' => false, 'searchTerm' => array('tag' => null, 'search' => ''), 'displayCount' => false, 'count' => 3, 'current' => 1, 'max' => 1, 'next' => '/articles/%5Bpost_slug%5D?p=2', 'prev' => '/articles/%5Bpost_slug%5D?p=0'), 'hasAnyMedia' => false, 'postListPage' => object(Page), 'postTemplatePage' => object(Page), 'section_link_style' => object(LinkStyle), 'section_link_style_class' => 'link-style-5ecc267', 'section_link_element_id' => 'link-element-2c8dcbb', 'controller' => object(PostListSectionController)))
     (src/Section/SectionController.php:267)
  at App\Section\SectionController->renderView('site/section/blog/post_list.html.twig', array('posts' => array(object(Post), object(Post), object(Post)), 'section' => object(PostListSection), 'nav' => array('display' => false, 'searchTerm' => array('tag' => null, 'search' => ''), 'displayCount' => false, 'count' => 3, 'current' => 1, 'max' => 1, 'next' => '/articles/%5Bpost_slug%5D?p=2', 'prev' => '/articles/%5Bpost_slug%5D?p=0'), 'hasAnyMedia' => false, 'postListPage' => object(Page), 'postTemplatePage' => object(Page), 'section_link_style' => object(LinkStyle), 'section_link_style_class' => 'link-style-5ecc267', 'section_link_element_id' => 'link-element-2c8dcbb', 'controller' => object(PostListSectionController)))
     (src/Section/SectionController.php:262)
  at App\Section\SectionController->renderSectionView('site/section/blog/post_list.html.twig', array('posts' => array(object(Post), object(Post), object(Post)), 'section' => object(PostListSection), 'nav' => array('display' => false, 'searchTerm' => array('tag' => null, 'search' => ''), 'displayCount' => false, 'count' => 3, 'current' => 1, 'max' => 1, 'next' => '/articles/%5Bpost_slug%5D?p=2', 'prev' => '/articles/%5Bpost_slug%5D?p=0'), 'hasAnyMedia' => false, 'postListPage' => object(Page), 'postTemplatePage' => object(Page), 'section_link_style' => object(LinkStyle), 'section_link_style_class' => 'link-style-5ecc267', 'section_link_element_id' => 'link-element-2c8dcbb', 'controller' => object(PostListSectionController)))
     (src/Section/Module/PostListSectionController.php:159)
  at App\Section\Module\PostListSectionController->getView(object(PostListSection))
     (src/Service/PageRenderer.php:278)
  at App\Service\PageRenderer->showAction(object(Request), object(Site), object(Page))
     (src/Controller/Frontend/FrontendController.php:172)
  at App\Controller\Frontend\FrontendController->showAction(object(Request), 'articles/explicabo-dolorem-consequuntur-rem')
     (vendor/symfony/http-kernel/HttpKernel.php:183)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:182)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:29)
  at require_once('/app/vendor/autoload_runtime.php')
     (web/index.php:6)                
[1/2] TypeError
TypeError:
App\Twig\MediaExtension::mediaPath(): Argument #1 ($media) must be of type App\Doctrine\Entity\Site\Media, null given, called in /tmp/symfony_cache/dev/twig/f2/f26b536a4604035358703c4a0a450a98.php on line 361

  at src/Twig/MediaExtension.php:58
  at App\Twig\MediaExtension->mediaPath(null)
     (/tmp/symfony_cache/dev/twig/f2/f26b536a4604035358703c4a0a450a98.php:361)
  at __TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4->block_item(array('posts' => array(object(Post), object(Post), object(Post)), 'section' => object(PostListSection), 'nav' => array('display' => false, 'searchTerm' => array('tag' => null, 'search' => ''), 'displayCount' => false, 'count' => 3, 'current' => 1, 'max' => 1, 'next' => '/articles/%5Bpost_slug%5D?p=2', 'prev' => '/articles/%5Bpost_slug%5D?p=0'), 'hasAnyMedia' => false, 'postListPage' => object(Page), 'postTemplatePage' => object(Page), 'section_link_style' => object(LinkStyle), 'section_link_style_class' => 'link-style-5ecc267', 'section_link_element_id' => 'link-element-2c8dcbb', 'controller' => object(PostListSectionController), 'app' => object(AppVariable), 'sectionStyles' => object(SectionStyle), 'class' => array('link', 'link-style-5ecc267', 'link-element-2c8dcbb', 'waves-effect'), 'forceFixedLayout' => false, 'previousSection' => object(PostContentSection), 'hasLink' => false, 'header_content' => object(Markup), 'item' => object(Post), '_parent' => array('posts' => array(object(Post), object(Post), object(Post)), 'section' => object(PostListSection), 'nav' => array('display' => false, 'searchTerm' => array('tag' => null, 'search' => ''), 'displayCount' => false, 'count' => 3, 'current' => 1, 'max' => 1, 'next' => '/articles/%5Bpost_slug%5D?p=2', 'prev' => '/articles/%5Bpost_slug%5D?p=0'), 'hasAnyMedia' => false, 'postListPage' => object(Page), 'postTemplatePage' => object(Page), 'section_link_style' => object(LinkStyle), 'section_link_style_class' => 'link-style-5ecc267', 'section_link_element_id' => 'link-element-2c8dcbb', 'controller' => object(PostListSectionController), 'app' => object(AppVariable), 'sectionStyles' => object(SectionStyle), 'class' => array('link-style-5ecc267-section', 'link-element-2c8dcbb-section'), 'forceFixedLayout' => false, 'previousSection' => object(PostContentSection), 'hasLink' => false, 'header_content' => object(Markup)), '_seq' => array(object(Post), object(Post), object(Post)), 'loop' => array('parent' => array('posts' => array(object(Post), object(Post), object(Post)), 'section' => object(PostListSection), 'nav' => array('display' => false, 'searchTerm' => array('tag' => null, 'search' => ''), 'displayCount' => false, 'count' => 3, 'current' => 1, 'max' => 1, 'next' => '/articles/%5Bpost_slug%5D?p=2', 'prev' => '/articles/%5Bpost_slug%5D?p=0'), 'hasAnyMedia' => false, 'postListPage' => object(Page), 'postTemplatePage' => object(Page), 'section_link_style' => object(LinkStyle), 'section_link_style_class' => 'link-style-5ecc267', 'section_link_element_id' => 'link-element-2c8dcbb', 'controller' => object(PostListSectionController), 'app' => object(AppVariable), 'sectionStyles' => object(SectionStyle), 'class' => array('link-style-5ecc267-section', 'link-element-2c8dcbb-section'), 'forceFixedLayout' => false, 'previousSection' => object(PostContentSection), 'hasLink' => false, 'header_content' => object(Markup)), 'index0' => 0, 'index' => 1, 'first' => true, 'revindex0' => 2, 'revindex' => 3, 'length' => 3, 'last' => false), '_key' => 0), array('sectionTitle' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionTitle'), 'sectionContentBefore' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionContentBefore'), 'sectionContent' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_sectionContent'), 'sectionLinks' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionLinks'), 'sectionBeforeContainer' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionBeforeContainer'), 'container' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_container'), 'sectionContainer' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionContainer'), 'sectionContainerContents' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionContainerContents'), 'animations' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_animations'), 'sectionAnimations' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_sectionAnimations'), 'arrowEffect' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_arrowEffect'), 'item' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_item')))
     (vendor/twig/twig/src/Template.php:446)
  at Twig\Template->yieldBlock('item', array('posts' => array(object(Post), object(Post), object(Post)), 'section' => object(PostListSection), 'nav' => array('display' => false, 'searchTerm' => array('tag' => null, 'search' => ''), 'displayCount' => false, 'count' => 3, 'current' => 1, 'max' => 1, 'next' => '/articles/%5Bpost_slug%5D?p=2', 'prev' => '/articles/%5Bpost_slug%5D?p=0'), 'hasAnyMedia' => false, 'postListPage' => object(Page), 'postTemplatePage' => object(Page), 'section_link_style' => object(LinkStyle), 'section_link_style_class' => 'link-style-5ecc267', 'section_link_element_id' => 'link-element-2c8dcbb', 'controller' => object(PostListSectionController), 'app' => object(AppVariable), 'sectionStyles' => object(SectionStyle), 'class' => array('link-style-5ecc267-section', 'link-element-2c8dcbb-section'), 'forceFixedLayout' => false, 'previousSection' => object(PostContentSection), 'hasLink' => false, 'header_content' => object(Markup), '_parent' => array('posts' => array(object(Post), object(Post), object(Post)), 'section' => object(PostListSection), 'nav' => array('display' => false, 'searchTerm' => array('tag' => null, 'search' => ''), 'displayCount' => false, 'count' => 3, 'current' => 1, 'max' => 1, 'next' => '/articles/%5Bpost_slug%5D?p=2', 'prev' => '/articles/%5Bpost_slug%5D?p=0'), 'hasAnyMedia' => false, 'postListPage' => object(Page), 'postTemplatePage' => object(Page), 'section_link_style' => object(LinkStyle), 'section_link_style_class' => 'link-style-5ecc267', 'section_link_element_id' => 'link-element-2c8dcbb', 'controller' => object(PostListSectionController), 'app' => object(AppVariable), 'sectionStyles' => object(SectionStyle), 'class' => array('link-style-5ecc267-section', 'link-element-2c8dcbb-section'), 'forceFixedLayout' => false, 'previousSection' => object(PostContentSection), 'hasLink' => false, 'header_content' => object(Markup)), '_seq' => array(object(Post), object(Post), object(Post)), 'loop' => array('parent' => array('posts' => array(object(Post), object(Post), object(Post)), 'section' => object(PostListSection), 'nav' => array('display' => false, 'searchTerm' => array('tag' => null, 'search' => ''), 'displayCount' => false, 'count' => 3, 'current' => 1, 'max' => 1, 'next' => '/articles/%5Bpost_slug%5D?p=2', 'prev' => '/articles/%5Bpost_slug%5D?p=0'), 'hasAnyMedia' => false, 'postListPage' => object(Page), 'postTemplatePage' => object(Page), 'section_link_style' => object(LinkStyle), 'section_link_style_class' => 'link-style-5ecc267', 'section_link_element_id' => 'link-element-2c8dcbb', 'controller' => object(PostListSectionController), 'app' => object(AppVariable), 'sectionStyles' => object(SectionStyle), 'class' => array('link-style-5ecc267-section', 'link-element-2c8dcbb-section'), 'forceFixedLayout' => false, 'previousSection' => object(PostContentSection), 'hasLink' => false, 'header_content' => object(Markup)), 'index0' => 0, 'index' => 1, 'first' => true, 'revindex0' => 2, 'revindex' => 3, 'length' => 3, 'last' => false), 'item' => object(Post), '_key' => 0), array('sectionTitle' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionTitle'), 'sectionContentBefore' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionContentBefore'), 'sectionContent' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_sectionContent'), 'sectionLinks' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionLinks'), 'sectionBeforeContainer' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionBeforeContainer'), 'container' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_container'), 'sectionContainer' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionContainer'), 'sectionContainerContents' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionContainerContents'), 'animations' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_animations'), 'sectionAnimations' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_sectionAnimations'), 'arrowEffect' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_arrowEffect'), 'item' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_item')))
     (/tmp/symfony_cache/dev/twig/f2/f26b536a4604035358703c4a0a450a98.php:513)
  at __TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4->block_sectionContent(array('posts' => array(object(Post), object(Post), object(Post)), 'section' => object(PostListSection), 'nav' => array('display' => false, 'searchTerm' => array('tag' => null, 'search' => ''), 'displayCount' => false, 'count' => 3, 'current' => 1, 'max' => 1, 'next' => '/articles/%5Bpost_slug%5D?p=2', 'prev' => '/articles/%5Bpost_slug%5D?p=0'), 'hasAnyMedia' => false, 'postListPage' => object(Page), 'postTemplatePage' => object(Page), 'section_link_style' => object(LinkStyle), 'section_link_style_class' => 'link-style-5ecc267', 'section_link_element_id' => 'link-element-2c8dcbb', 'controller' => object(PostListSectionController), 'app' => object(AppVariable), 'sectionStyles' => object(SectionStyle), 'class' => array('link-style-5ecc267-section', 'link-element-2c8dcbb-section'), 'forceFixedLayout' => false, 'previousSection' => object(PostContentSection), 'hasLink' => false, 'header_content' => object(Markup), '_parent' => array('posts' => array(object(Post), object(Post), object(Post)), 'section' => object(PostListSection), 'nav' => array('display' => false, 'searchTerm' => array('tag' => null, 'search' => ''), 'displayCount' => false, 'count' => 3, 'current' => 1, 'max' => 1, 'next' => '/articles/%5Bpost_slug%5D?p=2', 'prev' => '/articles/%5Bpost_slug%5D?p=0'), 'hasAnyMedia' => false, 'postListPage' => object(Page), 'postTemplatePage' => object(Page), 'section_link_style' => object(LinkStyle), 'section_link_style_class' => 'link-style-5ecc267', 'section_link_element_id' => 'link-element-2c8dcbb', 'controller' => object(PostListSectionController), 'app' => object(AppVariable), 'sectionStyles' => object(SectionStyle), 'class' => array('link-style-5ecc267-section', 'link-element-2c8dcbb-section'), 'forceFixedLayout' => false, 'previousSection' => object(PostContentSection), 'hasLink' => false, 'header_content' => object(Markup)), '_seq' => array(object(Post), object(Post), object(Post)), 'loop' => array('parent' => array('posts' => array(object(Post), object(Post), object(Post)), 'section' => object(PostListSection), 'nav' => array('display' => false, 'searchTerm' => array('tag' => null, 'search' => ''), 'displayCount' => false, 'count' => 3, 'current' => 1, 'max' => 1, 'next' => '/articles/%5Bpost_slug%5D?p=2', 'prev' => '/articles/%5Bpost_slug%5D?p=0'), 'hasAnyMedia' => false, 'postListPage' => object(Page), 'postTemplatePage' => object(Page), 'section_link_style' => object(LinkStyle), 'section_link_style_class' => 'link-style-5ecc267', 'section_link_element_id' => 'link-element-2c8dcbb', 'controller' => object(PostListSectionController), 'app' => object(AppVariable), 'sectionStyles' => object(SectionStyle), 'class' => array('link-style-5ecc267-section', 'link-element-2c8dcbb-section'), 'forceFixedLayout' => false, 'previousSection' => object(PostContentSection), 'hasLink' => false, 'header_content' => object(Markup)), 'index0' => 0, 'index' => 1, 'first' => true, 'revindex0' => 2, 'revindex' => 3, 'length' => 3, 'last' => false), 'item' => object(Post), '_key' => 0), array('sectionTitle' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionTitle'), 'sectionContentBefore' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionContentBefore'), 'sectionContent' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_sectionContent'), 'sectionLinks' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionLinks'), 'sectionBeforeContainer' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionBeforeContainer'), 'container' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_container'), 'sectionContainer' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionContainer'), 'sectionContainerContents' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionContainerContents'), 'animations' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_animations'), 'sectionAnimations' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_sectionAnimations'), 'arrowEffect' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_arrowEffect'), 'item' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_item')))
     (vendor/twig/twig/src/Template.php:446)
  at Twig\Template->yieldBlock('sectionContent', array('posts' => array(object(Post), object(Post), object(Post)), 'section' => object(PostListSection), 'nav' => array('display' => false, 'searchTerm' => array('tag' => null, 'search' => ''), 'displayCount' => false, 'count' => 3, 'current' => 1, 'max' => 1, 'next' => '/articles/%5Bpost_slug%5D?p=2', 'prev' => '/articles/%5Bpost_slug%5D?p=0'), 'hasAnyMedia' => false, 'postListPage' => object(Page), 'postTemplatePage' => object(Page), 'section_link_style' => object(LinkStyle), 'section_link_style_class' => 'link-style-5ecc267', 'section_link_element_id' => 'link-element-2c8dcbb', 'controller' => object(PostListSectionController), 'app' => object(AppVariable), 'sectionStyles' => object(SectionStyle), 'class' => array('link-style-5ecc267-section', 'link-element-2c8dcbb-section'), 'forceFixedLayout' => false, 'previousSection' => object(PostContentSection), 'hasLink' => false, 'header_content' => object(Markup)), array('sectionTitle' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionTitle'), 'sectionContentBefore' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionContentBefore'), 'sectionContent' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_sectionContent'), 'sectionLinks' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionLinks'), 'sectionBeforeContainer' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionBeforeContainer'), 'container' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_container'), 'sectionContainer' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionContainer'), 'sectionContainerContents' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionContainerContents'), 'animations' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_animations'), 'sectionAnimations' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_sectionAnimations'), 'arrowEffect' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_arrowEffect'), 'item' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_item')))
     (/tmp/symfony_cache/dev/twig/b2/b2e10f2df87d208f3eb1d56b48cf0fdf.php:151)
  at __TwigTemplate_bdf29666542b8a2ad5a7a981656a632e->{closure:__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e::doDisplay():148}()
     (vendor/twig/twig/src/Extension/CoreExtension.php:2106)
  at Twig\Extension\CoreExtension::captureOutput(object(Generator))
     (/tmp/symfony_cache/dev/twig/b2/b2e10f2df87d208f3eb1d56b48cf0fdf.php:148)
  at __TwigTemplate_bdf29666542b8a2ad5a7a981656a632e->doDisplay(array('posts' => array(object(Post), object(Post), object(Post)), 'section' => object(PostListSection), 'nav' => array('display' => false, 'searchTerm' => array('tag' => null, 'search' => ''), 'displayCount' => false, 'count' => 3, 'current' => 1, 'max' => 1, 'next' => '/articles/%5Bpost_slug%5D?p=2', 'prev' => '/articles/%5Bpost_slug%5D?p=0'), 'hasAnyMedia' => false, 'postListPage' => object(Page), 'postTemplatePage' => object(Page), 'section_link_style' => object(LinkStyle), 'section_link_style_class' => 'link-style-5ecc267', 'section_link_element_id' => 'link-element-2c8dcbb', 'controller' => object(PostListSectionController), 'app' => object(AppVariable), 'sectionStyles' => object(SectionStyle), 'class' => array('link-style-5ecc267-section', 'link-element-2c8dcbb-section'), 'forceFixedLayout' => false, 'previousSection' => object(PostContentSection), 'hasLink' => false, 'header_content' => object(Markup)), array('sectionTitle' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionTitle'), 'sectionContentBefore' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionContentBefore'), 'sectionContent' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_sectionContent'), 'sectionLinks' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionLinks'), 'sectionBeforeContainer' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionBeforeContainer'), 'container' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_container'), 'sectionContainer' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionContainer'), 'sectionContainerContents' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionContainerContents'), 'animations' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_animations'), 'sectionAnimations' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_sectionAnimations'), 'arrowEffect' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_arrowEffect'), 'item' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_item')))
     (vendor/twig/twig/src/Template.php:402)
  at Twig\Template->yield(array('posts' => array(object(Post), object(Post), object(Post)), 'section' => object(PostListSection), 'nav' => array('display' => false, 'searchTerm' => array('tag' => null, 'search' => ''), 'displayCount' => false, 'count' => 3, 'current' => 1, 'max' => 1, 'next' => '/articles/%5Bpost_slug%5D?p=2', 'prev' => '/articles/%5Bpost_slug%5D?p=0'), 'hasAnyMedia' => false, 'postListPage' => object(Page), 'postTemplatePage' => object(Page), 'section_link_style' => object(LinkStyle), 'section_link_style_class' => 'link-style-5ecc267', 'section_link_element_id' => 'link-element-2c8dcbb', 'controller' => object(PostListSectionController), 'app' => object(AppVariable)), array('sectionTitle' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionTitle'), 'sectionContentBefore' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionContentBefore'), 'sectionContent' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_sectionContent'), 'sectionLinks' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionLinks'), 'sectionBeforeContainer' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionBeforeContainer'), 'container' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_container'), 'sectionContainer' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionContainer'), 'sectionContainerContents' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_sectionContainerContents'), 'animations' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_animations'), 'sectionAnimations' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_sectionAnimations'), 'arrowEffect' => array(object(__TwigTemplate_bdf29666542b8a2ad5a7a981656a632e), 'block_arrowEffect'), 'item' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_item')))
     (/tmp/symfony_cache/dev/twig/f2/f26b536a4604035358703c4a0a450a98.php:55)
  at __TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4->doDisplay(array('posts' => array(object(Post), object(Post), object(Post)), 'section' => object(PostListSection), 'nav' => array('display' => false, 'searchTerm' => array('tag' => null, 'search' => ''), 'displayCount' => false, 'count' => 3, 'current' => 1, 'max' => 1, 'next' => '/articles/%5Bpost_slug%5D?p=2', 'prev' => '/articles/%5Bpost_slug%5D?p=0'), 'hasAnyMedia' => false, 'postListPage' => object(Page), 'postTemplatePage' => object(Page), 'section_link_style' => object(LinkStyle), 'section_link_style_class' => 'link-style-5ecc267', 'section_link_element_id' => 'link-element-2c8dcbb', 'controller' => object(PostListSectionController), 'app' => object(AppVariable)), array('item' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_item'), 'sectionContent' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_sectionContent'), 'sectionAnimations' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_sectionAnimations')))
     (vendor/twig/twig/src/Template.php:402)
  at Twig\Template->yield(array('posts' => array(object(Post), object(Post), object(Post)), 'section' => object(PostListSection), 'nav' => array('display' => false, 'searchTerm' => array('tag' => null, 'search' => ''), 'displayCount' => false, 'count' => 3, 'current' => 1, 'max' => 1, 'next' => '/articles/%5Bpost_slug%5D?p=2', 'prev' => '/articles/%5Bpost_slug%5D?p=0'), 'hasAnyMedia' => false, 'postListPage' => object(Page), 'postTemplatePage' => object(Page), 'section_link_style' => object(LinkStyle), 'section_link_style_class' => 'link-style-5ecc267', 'section_link_element_id' => 'link-element-2c8dcbb', 'controller' => object(PostListSectionController), 'app' => object(AppVariable)), array('item' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_item'), 'sectionContent' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_sectionContent'), 'sectionAnimations' => array(object(__TwigTemplate_3f7dd9da874b53f37ca8ebf4e72006a4), 'block_sectionAnimations')))
     (vendor/twig/twig/src/Template.php:358)
  at Twig\Template->display(array('posts' => array(object(Post), object(Post), object(Post)), 'section' => object(PostListSection), 'nav' => array('display' => false, 'searchTerm' => array('tag' => null, 'search' => ''), 'displayCount' => false, 'count' => 3, 'current' => 1, 'max' => 1, 'next' => '/articles/%5Bpost_slug%5D?p=2', 'prev' => '/articles/%5Bpost_slug%5D?p=0'), 'hasAnyMedia' => false, 'postListPage' => object(Page), 'postTemplatePage' => object(Page), 'section_link_style' => object(LinkStyle), 'section_link_style_class' => 'link-style-5ecc267', 'section_link_element_id' => 'link-element-2c8dcbb', 'controller' => object(PostListSectionController)))
     (vendor/twig/twig/src/Template.php:373)
  at Twig\Template->render(array('posts' => array(object(Post), object(Post), object(Post)), 'section' => object(PostListSection), 'nav' => array('display' => false, 'searchTerm' => array('tag' => null, 'search' => ''), 'displayCount' => false, 'count' => 3, 'current' => 1, 'max' => 1, 'next' => '/articles/%5Bpost_slug%5D?p=2', 'prev' => '/articles/%5Bpost_slug%5D?p=0'), 'hasAnyMedia' => false, 'postListPage' => object(Page), 'postTemplatePage' => object(Page), 'section_link_style' => object(LinkStyle), 'section_link_style_class' => 'link-style-5ecc267', 'section_link_element_id' => 'link-element-2c8dcbb', 'controller' => object(PostListSectionController)))
     (vendor/twig/twig/src/TemplateWrapper.php:51)
  at Twig\TemplateWrapper->render(array('posts' => array(object(Post), object(Post), object(Post)), 'section' => object(PostListSection), 'nav' => array('display' => false, 'searchTerm' => array('tag' => null, 'search' => ''), 'displayCount' => false, 'count' => 3, 'current' => 1, 'max' => 1, 'next' => '/articles/%5Bpost_slug%5D?p=2', 'prev' => '/articles/%5Bpost_slug%5D?p=0'), 'hasAnyMedia' => false, 'postListPage' => object(Page), 'postTemplatePage' => object(Page), 'section_link_style' => object(LinkStyle), 'section_link_style_class' => 'link-style-5ecc267', 'section_link_element_id' => 'link-element-2c8dcbb', 'controller' => object(PostListSectionController)))
     (vendor/twig/twig/src/Environment.php:333)
  at Twig\Environment->render('site/section/blog/post_list.html.twig', array('posts' => array(object(Post), object(Post), object(Post)), 'section' => object(PostListSection), 'nav' => array('display' => false, 'searchTerm' => array('tag' => null, 'search' => ''), 'displayCount' => false, 'count' => 3, 'current' => 1, 'max' => 1, 'next' => '/articles/%5Bpost_slug%5D?p=2', 'prev' => '/articles/%5Bpost_slug%5D?p=0'), 'hasAnyMedia' => false, 'postListPage' => object(Page), 'postTemplatePage' => object(Page), 'section_link_style' => object(LinkStyle), 'section_link_style_class' => 'link-style-5ecc267', 'section_link_element_id' => 'link-element-2c8dcbb', 'controller' => object(PostListSectionController)))
     (src/Section/SectionController.php:267)
  at App\Section\SectionController->renderView('site/section/blog/post_list.html.twig', array('posts' => array(object(Post), object(Post), object(Post)), 'section' => object(PostListSection), 'nav' => array('display' => false, 'searchTerm' => array('tag' => null, 'search' => ''), 'displayCount' => false, 'count' => 3, 'current' => 1, 'max' => 1, 'next' => '/articles/%5Bpost_slug%5D?p=2', 'prev' => '/articles/%5Bpost_slug%5D?p=0'), 'hasAnyMedia' => false, 'postListPage' => object(Page), 'postTemplatePage' => object(Page), 'section_link_style' => object(LinkStyle), 'section_link_style_class' => 'link-style-5ecc267', 'section_link_element_id' => 'link-element-2c8dcbb', 'controller' => object(PostListSectionController)))
     (src/Section/SectionController.php:262)
  at App\Section\SectionController->renderSectionView('site/section/blog/post_list.html.twig', array('posts' => array(object(Post), object(Post), object(Post)), 'section' => object(PostListSection), 'nav' => array('display' => false, 'searchTerm' => array('tag' => null, 'search' => ''), 'displayCount' => false, 'count' => 3, 'current' => 1, 'max' => 1, 'next' => '/articles/%5Bpost_slug%5D?p=2', 'prev' => '/articles/%5Bpost_slug%5D?p=0'), 'hasAnyMedia' => false, 'postListPage' => object(Page), 'postTemplatePage' => object(Page), 'section_link_style' => object(LinkStyle), 'section_link_style_class' => 'link-style-5ecc267', 'section_link_element_id' => 'link-element-2c8dcbb', 'controller' => object(PostListSectionController)))
     (src/Section/Module/PostListSectionController.php:159)
  at App\Section\Module\PostListSectionController->getView(object(PostListSection))
     (src/Service/PageRenderer.php:278)
  at App\Service\PageRenderer->showAction(object(Request), object(Site), object(Page))
     (src/Controller/Frontend/FrontendController.php:172)
  at App\Controller\Frontend\FrontendController->showAction(object(Request), 'articles/explicabo-dolorem-consequuntur-rem')
     (vendor/symfony/http-kernel/HttpKernel.php:183)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (vendor/symfony/http-kernel/HttpKernel.php:76)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (vendor/symfony/http-kernel/Kernel.php:182)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (vendor/symfony/runtime/Runner/Symfony/HttpKernelRunner.php:35)
  at Symfony\Component\Runtime\Runner\Symfony\HttpKernelRunner->run()
     (vendor/autoload_runtime.php:29)
  at require_once('/app/vendor/autoload_runtime.php')
     (web/index.php:6)