I'm working on a blog in GRAV CMS and aiming for a specific layout for my blog posts. I plan to include a header, an introductory paragraph, followed by the first image in the folder, and then the rest of the content. I've tried using the following code to manipulate the layout:
{{ page.summary|raw }}
<img ... />
{{ page.content|raw }}
However, this results in the text summary appearing both above and below the image within the full text block. Is there a way to configure the "Summary Size and Separator" or adjust my code to display the first paragraph above the first image from the folder, without repeating the summary text?