I’m trying to figure out how to get the parent page title from one of the modular partials. So I have:
01.intro
_header
header.md
_body
modular.md
I want the header.md file to display the page title of the modular.md not the page title of itself. I currently have
{% set patternTitle = page.title %}
set in the header.html.twig, but it only reads from itself (header.md) and not the parent (modular.md).
help?