I'm trying to create an Orchard theme and not sure if I'm doing the correct thing regarding how to it "correctly" in Orchard.
I have set my Layout.html as my Master Page per se, where I have a zone called Content, then I have create a page called Content-Page.html, now inside there, I want different shape's data in different order e.g.
<h1>onePart.Name</h1>
<p>Hi this is an example twoPart.Data and onePart.Data </p>
How do I intersperse this using Shapes? Do I access the field's directly, use a wrapper? Currently I'm doing this.
var onePart= Model.ContentItem.CustomPart;
This allows me to put the data where it needs to be, I've found may of the articles, but it seems to show if your Shapes has all the data it needs, my issue is I don't really want a theme to have a dependency on a Module.