if I do page.content, it’s also printing the page.summary. I don’t want that. How can I avoid it?
There is no built in way, but it can be done pretty easily with Twig (which gets compiled into PHP so it’s still fast):
{% set content = page.content|slice(page.summary|length) %}
Then just output {{ content }}
Thank you, this works!