-
Notifications
You must be signed in to change notification settings - Fork 3
/
ZoneNames.cs
20 lines (18 loc) · 923 Bytes
/
ZoneNames.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
namespace Lombiq.BaseTheme.Constants;
public static class ZoneNames
{
public const string Header = nameof(Header);
public const string Navigation = nameof(Navigation);
public const string BeforeMain = nameof(BeforeMain);
public const string Featured = nameof(Featured);
public const string AsideFirst = nameof(AsideFirst);
public const string Messages = nameof(Messages);
public const string BeforeContent = nameof(BeforeContent);
public const string Content = nameof(Content);
public const string AfterContent = nameof(AfterContent);
public const string AsideSecond = nameof(AsideSecond);
public const string AfterMain = nameof(AfterMain);
public const string Footer = nameof(Footer);
// This needs to contain one widget of LayoutInjection content type whose template initializes the theme.
public const string LayoutInjection = ContentTypes.LayoutInjection;
}