| [866] | 1 | <%@ Master Language="C#" Inherits="System.Web.Mvc.ViewMasterPage"%>
|
|---|
| 2 | <%@ Import Namespace="Platnosci.Helpers" %>
|
|---|
| 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>
|
|---|
| [867] | 7 | <%=Html.MainCss("Site.css")%>
|
|---|
| 8 | <%=Html.AddCssToPortal()%>
|
|---|
| 9 | <%=Html.Favicon()%>
|
|---|
| [866] | 10 | </head>
|
|---|
| 11 | <body>
|
|---|
| [888] | 12 | <table class="wtab" cellpadding="0" cellspacing="0" border="0">
|
|---|
| [866] | 13 | <tr>
|
|---|
| [886] | 14 | <td class="tlo">
|
|---|
| 15 | <table class= "wtab" cellpadding="0" cellspacing="0" border="0">
|
|---|
| 16 | <tr class="padding">
|
|---|
| 17 | <%=Html.Logo()%>
|
|---|
| 18 | <%string querystring = Request.QueryString.ToString();%>
|
|---|
| 19 | <td id="flagi">
|
|---|
| 20 | <%=Html.ImageLink("pl.gif","pl",querystring)%>
|
|---|
| 21 | <%=Html.ImageLink("gb.gif","en",querystring)%>
|
|---|
| 22 | <%=Html.ImageLink("de.gif","de",querystring)%>
|
|---|
| 23 | <%=Html.ImageLink("it.gif","it",querystring)%>
|
|---|
| 24 | <%=Html.ImageLink("fr.gif","fr",querystring)%>
|
|---|
| 25 | </td>
|
|---|
| 26 | </tr>
|
|---|
| 27 | <tr class="padding">
|
|---|
| 28 | <%if (ConfigurationManager.AppSettings["Css"] != "admoto"){%>
|
|---|
| 29 | <td>
|
|---|
| 30 | <div id="title">
|
|---|
| 31 | <h1><asp:Label ID="napis" runat="server" Text="<%$Resources:tlumaczenia,tytul%>"></asp:Label></h1>
|
|---|
| 32 | </div>
|
|---|
| 33 | </td>
|
|---|
| 34 | <%}%>
|
|---|
| 35 | <td class="kontrolkaLogowania"
|
|---|
| 36 | <div id="logindisplay"><br /><br /><% Html.RenderPartial("LogOnUserControl"); %></div>
|
|---|
| 37 | </td>
|
|---|
| 38 | </tr>
|
|---|
| 39 | </table>
|
|---|
| 40 | </td>
|
|---|
| 41 | </tr>
|
|---|
| 42 | <tr>
|
|---|
| [866] | 43 | <td colspan="2" class="pagecontent">
|
|---|
| 44 | <div id="main">
|
|---|
| 45 | <asp:ContentPlaceHolder ID="MainContent" runat="server" />
|
|---|
| 46 | </div>
|
|---|
| 47 | </td>
|
|---|
| 48 | </tr>
|
|---|
| 49 | <tr>
|
|---|
| 50 | <td colspan="2"><div id="Div1">Copyright © 2009, admoto.pl</div></td>
|
|---|
| 51 | </tr>
|
|---|
| 52 | </table>
|
|---|
| 53 |
|
|---|
| 54 | </body>
|
|---|
| 55 | </html>
|
|---|