PageRenderTime 45ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 0ms

/BlogEngine/BlogEngine.NET/themes/Mobile/site.master

#
ASP.NET | 43 lines | 38 code | 5 blank | 0 comment | 2 complexity | c4ecfde373cac4d3c14c6f6e37d1ace2 MD5 | raw file
Possible License(s): LGPL-2.1, Apache-2.0, BSD-3-Clause
  1. <%@ Master Language="C#" AutoEventWireup="true" CodeFile="site.master.cs" Inherits="MobileSite" %>
  2. <%@ Register Src="~/admin/menu.ascx" TagName="menu" TagPrefix="uc1" %>
  3. <%@ Import Namespace="BlogEngine.Core" %>
  4. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  5. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
  6. <head runat="server" profile="http://gmpg.org/xfn/11">
  7. <link rel="stylesheet" href="style.css" type="text/css" />
  8. <link rel="shortcut icon" href="~/pics/blogengine.ico" type="image/x-icon"/>
  9. </head>
  10. <body>
  11. <form runat="server">
  12. <div id="header">
  13. <h3><%=BlogSettings.Instance.Name %></h3>
  14. <p><%=BlogSettings.Instance.Description %></p>
  15. </div>
  16. <div id="menu">
  17. <a href="<%=Utils.RelativeWebRoot%>default.aspx">Home</a> |
  18. <a href="<%=Utils.RelativeWebRoot%>archive.aspx">Archive</a> |
  19. <a href="<%=Utils.RelativeWebRoot%>contact.aspx">Contact</a> |
  20. <a href="<%=Utils.FeedUrl %>">Feed</a>
  21. <% if (Utils.IsMobile)
  22. { %>
  23. | <blog:MobileThemeSwitch runat="server" />
  24. <%
  25. }
  26. %>
  27. </div>
  28. <div id="content">
  29. <blog:SearchOnSearch ID="SearchOnSearch1" runat="server" MaxResults="3" Headline="You searched for" Text="Here are some results for the search term on this website" />
  30. <asp:ContentPlaceHolder ID="cphBody" runat="server" />
  31. </div>
  32. <div id="footer">
  33. <p>Powered by <a href="http://www.dotnetblogengine.net/" target="_blank">BlogEngine.NET</a> <%=BlogSettings.Instance.Version() %> |
  34. Original Design by <a href="http://smallpark.org">SmallPark</a>, Adapted by <a href="http://www.nyveldt.com/blog/">RazorAnt</a></p>
  35. </div>
  36. </form>
  37. </body>
  38. </html>