Created
May 20, 2019 07:10
-
-
Save mficzel/a4f45cf0acddef87e2305ec5a75d82fb to your computer and use it in GitHub Desktop.
Page Preview in Sitegeist.Monocle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
prototype(Vendor.Site:Component.Organism.Header.Fixtures) < prototype(Neos.Fusion:DataStructure) { | |
mainMenuItems ... | |
languageMenuItems ... | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
prototype(Vendor.Site:Component.Template.Page) < prototype(Neos.Fusion:Component) { | |
@styleguide { | |
props { | |
headerData = Vendor.Site:Component.Organism.Header.Fixtures | |
footerData = Vendor.Site:Component.Organism.Footer.Fixtures | |
content = afx` | |
<Sitegeist.Monocle:Preview.Prototype prototypeName="Vendor.Site:Component.Molecule.Keyvisual" /> | |
<Sitegeist.Monocle:Preview.Prototype prototypeName="Vendor.Site:Component.Molecule.Header"/> | |
<Sitegeist.Monocle:Preview.Prototype prototypeName="Vendor.Site:Component.Molecule.Text" propSet="long" /> | |
` | |
} | |
} | |
headerData = null | |
footerData = null | |
content = null | |
renderer = afx` | |
<Vendor.Site:Component.Organism.Header {...props.headerData} /> | |
<main> | |
{props.content} | |
</main> | |
<Vendor.Site:Component.Organism.Footer {...props.footerData} /> | |
` | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment