Given the following template, HTML in the "Content" field of the page form in the admin should "just work". But I don't see the HTML on the test page.
Screenshot of demo page attached
Code:
<mvt:item name="html_profile" /> <head> <mvt:if expr="NOT ISNULL l.settings:page:title"> <title>&mvt:page:title;</title> <mvt:else> <title>&mvt:page:name; - &mvt:store:name;</title> </mvt:if> <mvt:item name="head" param="head_tag" /> </head> <body id="js-&mvte:page:code;" class="<mvt:eval expr="tolower(l.settings:page:code)" />"> <mvt:item name="hdft" param="global_header" /> <div class="row hdft-header"> <mvt:item name="hdft" param="header" /> </div> <div class="row bg-white main-content-row content-item"> <div class="column whole"> <mvt:item name="content" /> <-- edit to add this. Remember folks if you don't call it, you can't see it. </div> </div> <div class="row hdft-footer"> <mvt:item name="hdft" param="footer" /> </div> <mvt:item name="hdft" param="global_footer" /> </body> </html>
Comment