Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

You can set properties in a sub-template from the main template easily, because they're all available as properties of the instantiated sub-template object. Here's an example:

Code Block
languagecsharp
   // instantiate the sub-template
  
Header header = this.Create<Header>();


 // include the meta tag
  
header.IncludeMeta = true;

...