Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/25/11 15:00:44 (14 years ago)
Author:
dkahn
Message:

#1433 Plugin styling

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/WebApplication/MVC2/HLWebOKBAdminPlugin/Views/Shared/Site.Master

    r4985 r6290  
    44<html xmlns="http://www.w3.org/1999/xhtml">
    55<head runat="server">
    6     <title><asp:ContentPlaceHolder ID="TitleContent" runat="server" /></title>
    7     <link href="../../Content/Site.css" rel="stylesheet" type="text/css" />
     6  <title>
     7    <asp:ContentPlaceHolder ID="TitleContent" runat="server" />
     8  </title>
     9  <link href="../../Content/Site.css" rel="stylesheet" type="text/css" />
    810</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        </ul>
     28      </div>
     29    </div>
    930
    10 <body>
    11     <div class="page">
    12 
    13         <div id="header">
    14             <div id="title">
    15                 <h1>My MVC Application</h1>
    16             </div>
    17              
    18             <div id="logindisplay">
    19                 <% Html.RenderPartial("LogOnUserControl"); %>
    20             </div>
    21            
    22             <div id="menucontainer">
    23            
    24                 <ul id="menu">             
    25                     <li><%: Html.ActionLink("Home", "Index", "Home")%></li>
    26                     <li><%: Html.ActionLink("About", "About", "Home")%></li>
    27                 </ul>
    28            
    29             </div>
    30         </div>
    31 
    32         <div id="main">
    33             <asp:ContentPlaceHolder ID="MainContent" runat="server" />
    34 
    35             <div id="footer">
    36             </div>
    37         </div>
     31    <div id="main">
     32        <div id="master-submenu">
     33      <asp:ContentPlaceHolder ID="SubMenuContent" runat="server" />
    3834    </div>
     35      <asp:ContentPlaceHolder ID="MainContent" runat="server" />
     36      <div id="footer">
     37      </div>
     38    </div>
     39  </div>
    3940</body>
    4041</html>
Note: See TracChangeset for help on using the changeset viewer.