mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2026-02-09 09:16:41 +08:00
--HG-- extra : convert_revision : svn%3A5ff7c347-ad56-4c35-b696-ccb81de16e03/trunk%4042981
19 lines
881 B
Plaintext
19 lines
881 B
Plaintext
<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage<AdminViewModel>" %>
|
|
<%@ Import Namespace="Orchard.Mvc.ViewModels"%>
|
|
</div><%-- .wrapper --%>
|
|
</div><%-- #main --%>
|
|
<ul id="navigation" role="navigation">
|
|
<li class="first"><h4>Dashboard</h4></li>
|
|
<%if (Model.AdminMenu != null) {
|
|
foreach (var menuSection in Model.AdminMenu) {%>
|
|
<li><h4><%=Html.Encode(menuSection.Text)%></h4><ul><%foreach (var menuItem in menuSection.Items) { %>
|
|
<li><%=Html.ActionLink(menuItem.Text, (string)menuItem.RouteValues["action"], menuItem.RouteValues)%></li>
|
|
<%} %></ul></li>
|
|
<%
|
|
}
|
|
}%>
|
|
</ul>
|
|
</div><%-- #content --%>
|
|
<div id="footer" role="contentinfo"></div><%-- #contentinfo --%>
|
|
</body>
|
|
</html> |