Hey,
I'm using the latest grav version but I came across a problem. I made a page and in the admin panel I added one image and two audio clips to that page. The problem is that the single images is repeated twice. If i remove the second audio clip, the second image also disappears. This is the markdown file:

## Stip leert vliegen

## Tak op de weg

And this is how it looks in the browser (zoomed out):
I tried removing all CSS, but that didn't change a thing.
This is the twig template:
{% extends 'partials/base.html.twig' %}
{% block stylesheets %}
{{ parent() }}
{% do assets.addCss('theme://css/stylesheetliedjes.css') %}
{{ assets.css() }}
{% endblock %}
{% block content %}
{{ page.content }}
{% endblock %}
This is (partly) base.html.twig:
<div id="content"> {% block content %}{% endblock %}</div>
Thanks for helping!
).