Last change
on this file since 4784 was
4604,
checked in by dkahn, 14 years ago
|
#1198 Imported new Plugin Host solution for the new MVC2 based web application
|
File size:
1.4 KB
|
Line | |
---|
1 | <%@ Master Language="C#" Inherits="System.Web.Mvc.ViewMasterPage" %>
|
---|
2 |
|
---|
3 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
---|
4 | <html xmlns="http://www.w3.org/1999/xhtml">
|
---|
5 | <head runat="server">
|
---|
6 | <title>
|
---|
7 | <asp:ContentPlaceHolder ID="TitleContent" runat="server" />
|
---|
8 | </title>
|
---|
9 | <link href="../../Content/Site.css" rel="stylesheet" type="text/css" />
|
---|
10 | </head>
|
---|
11 | <body>
|
---|
12 | <div class="page">
|
---|
13 | <div id="header">
|
---|
14 | <div id="title">
|
---|
15 | <h1>
|
---|
16 | My MVC Application</h1>
|
---|
17 | </div>
|
---|
18 | <div id="logindisplay">
|
---|
19 | <% Html.RenderPartial("LogOnUserControl"); %>
|
---|
20 | </div>
|
---|
21 | <div id="menucontainer">
|
---|
22 | <ul id="menu">
|
---|
23 | <li>
|
---|
24 | <%: Html.ActionLink("Home", "Index", "Home")%></li>
|
---|
25 | <li>
|
---|
26 | <%: Html.ActionLink("About", "About", "Home")%></li>
|
---|
27 | <% foreach (var pluginLink in
|
---|
28 | HLWebPluginHost.PluginLib.PluginHelper.GetPluginActions()) { %>
|
---|
29 | <li>
|
---|
30 | <%: Html.ActionLink(pluginLink.Name,
|
---|
31 | pluginLink.Action,
|
---|
32 | pluginLink.Controller)%>
|
---|
33 | </li>
|
---|
34 | <% } %>
|
---|
35 | </ul>
|
---|
36 | </div>
|
---|
37 | </div>
|
---|
38 | <div id="main">
|
---|
39 | <asp:ContentPlaceHolder ID="MainContent" runat="server" />
|
---|
40 | <div id="footer">
|
---|
41 | </div>
|
---|
42 | </div>
|
---|
43 | </div>
|
---|
44 | </body>
|
---|
45 | </html>
|
---|
Note: See
TracBrowser
for help on using the repository browser.