Hi,
I need to create a theme that integrates and "extends" templates from an external CMS.
This CMS generates an HTML template with three placeholders:
APP_INCLUDE_HEADER### : Placeholder for additional header content.
APP_INCLUDE_CONTENT### : Placeholder for the “main content” of the application. ###APP_INCLUDE_FOOTER### : Placeholder for additional footer content.
I want to grab the template, replace the placeholders with Twig syntax and create and extend my new templates from there. Is it possible? How?
Please note also, the external template should be requested each time a user visits my Grav site, as the external CMS content may change at any time.