public IEnumerable <TemplateModel> GetAvailableTemplates()
 {
     return(new List <TemplateModel>
     {
         new TemplateModel
         {
             Name = "Top Image",
             Inherit = false,
             AvailableWithoutTag = false,
             Default = true,
             Tags = new[] { GlobalSettings.ContentAreaTags.TopImage },
             Path = TemplateCoordinator.BlockPath("BlogContentBlock/TopImage")
         },
         new TemplateModel
         {
             Name = "Bottom Image",
             Inherit = false,
             AvailableWithoutTag = false,
             Default = false,
             Tags = new[] { GlobalSettings.ContentAreaTags.BottomImage },
             Path = TemplateCoordinator.BlockPath("BlogContentBlock/BottomImage")
         },
         new TemplateModel
         {
             Name = "Right Image",
             Inherit = false,
             AvailableWithoutTag = false,
             Default = false,
             Tags = new[] { GlobalSettings.ContentAreaTags.RightImage },
             Path = TemplateCoordinator.BlockPath("BlogContentBlock/RightImage")
         }
     });
 }
 public IEnumerable <TemplateModel> GetAvailableTemplates()
 {
     return(new List <TemplateModel>
     {
         new TemplateModel
         {
             Name = "Tier One",
             Inherit = false,
             AvailableWithoutTag = false,
             Default = false,
             Tags = new[] { GlobalSettings.ContentAreaTags.TierOne },
             Path = TemplateCoordinator.BlockPath("CallToActionCardA/FullWidth")
         },
         new TemplateModel
         {
             Name = "Tier Two",
             Inherit = false,
             AvailableWithoutTag = false,
             Default = false,
             Tags = new[] { GlobalSettings.ContentAreaTags.TierTwo },
             Path = TemplateCoordinator.BlockPath("CallToActionCardA/HalfWidth")
         },
         new TemplateModel
         {
             Name = "Tier Three",
             Inherit = false,
             AvailableWithoutTag = false,
             Default = false,
             Tags = new[] { GlobalSettings.ContentAreaTags.TierThree },
             Path = TemplateCoordinator.BlockPath("CallToActionCardA/OneThird")
         }
     });
 }
 public IEnumerable <TemplateModel> GetAvailableTemplates()
 {
     return(new List <TemplateModel>
     {
         new TemplateModel
         {
             Name = "Recipe Ingredient Template",
             Inherit = false,
             AvailableWithoutTag = false,
             Default = false,
             Tags = new[] { GlobalSettings.RenderingTags.RecipeIngredientTemplate },
             Path = TemplateCoordinator.BlockPath("RecipeIngredient/RecipeIngredientBlock")
         }
     });
 }