-
Notifications
You must be signed in to change notification settings - Fork 4
/
Centered-Submenu.ascx
22 lines (19 loc) · 1.03 KB
/
Centered-Submenu.ascx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<script runat="server">
// Settings which determine what variation of the skin is loaded
public bool ShowSidebarNavigation = true;
// Turns Breadcrumbs on this layout on and off
public bool ShowBreadcrumb = true;
// Sets the Node selectors for the main desktop navigation -> determin which pages are laoded and included in the navigation
//* -> means the root level, 0 -> means skip the nav-level-0, 1 -> means the nav-level-1
public string NavNodeSelector = "*,0,1";
</script>
<%--
Set common CSS classes on the body which determine the Layout
Layout="Fullscreen" are: Default, FloatWideHeader, Fullscreen, Centered
Navigation="Left": Right, Center, Left
--%>
<%@ Register TagPrefix="tosic" TagName="BodyCssClasses" src="controls/body-css-classes.ascx" %>
<tosic:BodyCssClasses runat="server" Layout="Centered" Navigation="right"/>
<%-- All Themes share the same main part - they only differ in the css classes etc. --%>
<%-- The following line is no comment, its a file include --%>
<!--#include file="controls/theme-body.ascx"-->