-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathComponentIdentifiers.cs
More file actions
24 lines (22 loc) · 1.06 KB
/
Copy pathComponentIdentifiers.cs
File metadata and controls
24 lines (22 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
namespace DancingGoat
{
/// <summary>
/// Encapsulated identifiers of components.
/// </summary>
public static class ComponentIdentifiers
{
// Widgets
public const string CTA_BUTTON_WIDGET = "DancingGoat.General.CTAButtonWidget";
public const string TESTIMONIAL_WIDGET = "DancingGoat.LandingPage.TestimonialWidget";
// Sections
public const string SINGLE_COLUMN_SECTION = "DancingGoat.SingleColumnSection";
public const string TWO_COLUMN_SECTION = "DancingGoat.TwoColumnSection";
public const string THREE_COLUMN_SECTION = "DancingGoat.ThreeColumnSection";
public const string SECTION_75_25 = "DancingGoat.Section_75_25";
public const string SECTION_25_75 = "DancingGoat.Section_25_75";
// Page templates
public const string LANDING_PAGE_SINGLE_COLUMN_TEMPLATE = "DancingGoat.LandingPageSingleColumn";
public const string ARTICLE_TEMPLATE = "DancingGoat.Article";
public const string ARTICLE_WITH_SIDEBAR_TEMPLATE = "DancingGoat.ArticleWithSidebar";
}
}