Render all collection item page content in Eleventy

You can easily render front matter or an excerpt, but what if you want to render the whole ‘below the fold’ within each collection item’s Markdown file? Use {{ item.templateContent | safe }} (within a loop of collection items).

This—combined with a max-character filter—might even be a more elegant way to show an excerpt in Eleventy.

Source