{{page.content}} in Events plugin using the Helium (gantry) theme

I set up a website with the Helium gantry theme. I installed the Events plugin and my events are displayed. Seems that the content is rendered. After the rendering somewhere happens a quoting of the html. On the website source it looks like this:

<section class="event-content">
    <h2 class="event-title"><a href="/test/samba/de/agenda/langenthaler-fasnacht">Langenthaler Fasnacht</a></h2>
    &lt;p&gt;Unterwegs in Langenthal mit Start im à la cArte &lt;/p&gt;
</section>

The title is rendered correct, the content is quoted. Here is the code part of the twig file:

<section class="event-content">
    <h2 class="event-title"><a href="{{ page.url }}">{{ page.title }}</a></h2>
    {{ page.content }}
 </section>

It should look like the this:

<section class="event-content">
    <h2 class="event-title"><a href="/test/samba/de/agenda/langenthaler-fasnacht">Langenthaler Fasnacht</a></h2>
    <p>Unterwegs in Langenthal mit Start im à la cArte</p>
</section>

I’m a beginner with grav and hope to get some help to solve this issue.

Thank you very much

1 Like

I solved the issue. I had to disable the markdown rendering in the page.

1 Like