After installing this theme, the frontpage (/node by default) is empty and does not show any sidebars or content. It's clearly specific to the front page, since /node displays correctly when it isn't the front page.

To reproduce:

- Install theme and set as default
- Disable home page sliders
- View front page

The error is in page--front.html.twig:

{% if page.content_home %}
<main id="homepage-content-wrapper" role="main">
  <div class="container">
    <div class="homepage-content page-content">
      {% include '@tara/template-parts/content_top.html.twig' %}
      {{ page.content }}
			{% if page.content_home %}
				<div class="homepage-content">
					{{ page.content_home }}
				</div><!--/.homepage-content -->
			{% endif %}
      {% include '@tara/template-parts/content_bottom.html.twig' %}
    </div><!--/.homepage-content -->
  </div> <!--/.container -->
</main>
{% endif %}

That first line should read if page.content.

Comments

cburschka created an issue. See original summary.

ravis’s picture

@cburschka
Thank you so much for reporting the issue.

Fixed and released version 8.x-2.2

Regards:
Ravi

ravis’s picture

Status: Active » Fixed
ravis’s picture

Status: Fixed » Closed (fixed)