| 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><asp:ContentPlaceHolder ID="TitleContent" runat="server" /></title>
|
|---|
| 7 | <asp:ContentPlaceHolder ID="jsContent" runat="server" />
|
|---|
| 8 | <asp:ContentPlaceHolder ID="cssContent" runat="server" />
|
|---|
| 9 | <link href="~/Content/Site.css" rel="stylesheet" type="text/css" />
|
|---|
| 10 | <link href="~/Content/print.css" media="print" rel="stylesheet" type="text/css" />
|
|---|
| 11 | </head>
|
|---|
| 12 | <body>
|
|---|
| 13 | <div class="page">
|
|---|
| 14 | <div id="header">
|
|---|
| 15 | <div id="title">
|
|---|
| 16 | <h1><%= Html.ActionLink("Wierszówki", "Index", "Home")%></h1>
|
|---|
| 17 | </div>
|
|---|
| 18 |
|
|---|
| 19 | <div id="logindisplay">
|
|---|
| 20 | <% Html.RenderPartial("LogOnUserControl"); %>
|
|---|
| 21 | </div>
|
|---|
| 22 |
|
|---|
| 23 | <div id="menucontainer">
|
|---|
| 24 | <ul id="menu">
|
|---|
| 25 | <li><%= Html.ActionLink("Start", "Index", "Home")%></li>
|
|---|
| 26 | <li><%= Html.ActionLink("O aplikacji", "About", "Home")%></li>
|
|---|
| 27 | <% if (Request.IsAuthenticated) { %>
|
|---|
| 28 | <li><%= Html.ActionLink("Raporty", "Index", "Report")%></li>
|
|---|
| 29 | <li><%= Html.ActionLink("U¿ytkownicy", "Index", "User")%></li>
|
|---|
| 30 | <li><%= Html.ActionLink("Autorzy", "Index", "Author")%></li>
|
|---|
| 31 | <% } %>
|
|---|
| 32 | </ul>
|
|---|
| 33 | </div>
|
|---|
| 34 | </div>
|
|---|
| 35 | <div id="main">
|
|---|
| 36 | <asp:ContentPlaceHolder ID="MainContent" runat="server" />
|
|---|
| 37 | <div id="footer">
|
|---|
| 38 | </div>
|
|---|
| 39 | </div>
|
|---|
| 40 | </div>
|
|---|
| 41 | </body>
|
|---|
| 42 | </html> |
|---|
Notatka: Zobacz
TracBrowser
aby uzyskać więcej informacji.