| [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">
|
|---|
| [908] | 16 | <tr>
|
|---|
| [886] | 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>
|
|---|
| [908] | 27 | <tr>
|
|---|
| [886] | 28 | <%if (ConfigurationManager.AppSettings["Css"] != "admoto"){%>
|
|---|
| [908] | 29 | <td class="title">
|
|---|
| 30 | <asp:Label ID="napis" runat="server" Text="<%$Resources:tlumaczenia,tytul%>"></asp:Label>
|
|---|
| [886] | 31 | </td>
|
|---|
| 32 | <%}%>
|
|---|
| [908] | 33 | <td class="kontrolkaLogowania">
|
|---|
| [886] | 34 | <div id="logindisplay"><br /><br /><% Html.RenderPartial("LogOnUserControl"); %></div>
|
|---|
| 35 | </td>
|
|---|
| 36 | </tr>
|
|---|
| 37 | </table>
|
|---|
| 38 | </td>
|
|---|
| 39 | </tr>
|
|---|
| 40 | <tr>
|
|---|
| [866] | 41 | <td colspan="2" class="pagecontent">
|
|---|
| 42 | <div id="main">
|
|---|
| 43 | <asp:ContentPlaceHolder ID="MainContent" runat="server" />
|
|---|
| 44 | </div>
|
|---|
| 45 | </td>
|
|---|
| 46 | </tr>
|
|---|
| 47 | <tr>
|
|---|
| 48 | <td colspan="2"><div id="Div1">Copyright © 2009, admoto.pl</div></td>
|
|---|
| 49 | </tr>
|
|---|
| 50 | </table>
|
|---|
| 51 |
|
|---|
| 52 | </body>
|
|---|
| 53 | </html>
|
|---|