PageRenderTime 37ms CodeModel.GetById 12ms RepoModel.GetById 0ms app.codeStats 0ms

/BlogEngine/BlogEngine.NET/themes/TitaniumX/site.master

#
ASP.NET | 49 lines | 41 code | 8 blank | 0 comment | 1 complexity | 70b5388a41c19e2268fabcd6f2551140 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="StandardSite" %>
  2. <%@ Import Namespace="BlogEngine.Core" %>
  3. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  4. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  5. <head runat="server" profile="http://gmpg.org/xfn/11">
  6. <link rel="stylesheet" href="style.css" type="text/css" />
  7. <link rel="shortcut icon" href="~/pics/blogengine.ico" type="image/x-icon"/>
  8. </head>
  9. <body>
  10. <div id="header">
  11. <p><a href="<%=Utils.AbsoluteWebRoot %>"><%=BlogSettings.Instance.Name %></a></p>
  12. <span><%=BlogSettings.Instance.Description %></span>
  13. </div>
  14. <div id="menu">
  15. <div class="login">
  16. <span runat="server" id="aUser"></span><a runat="server" id="aLogin" />
  17. </div>
  18. <ul>
  19. <li><a href="<%=Utils.AbsoluteWebRoot %>" rel="home"><%=Resources.labels.home %></a></li>
  20. <li><a href="<%=Utils.AbsoluteWebRoot %>archive.aspx"><%=Resources.labels.archive %></a></li>
  21. <li><a href="<%=Utils.AbsoluteWebRoot %>contact.aspx"><%=Resources.labels.contact %></a></li>
  22. <li><a href="<%=Utils.FeedUrl %>" class="feed"><img src="<%=Utils.ApplicationRelativeWebRoot %>pics/rssButton.png" alt="Feed" /><%=Resources.labels.subscribe %></a></li>
  23. <li><a href="javascript:void(BlogEngine.filterByAPML())" class="apmlfilter"><%=Resources.labels.filterByApml %></a></li>
  24. </ul>
  25. </div>
  26. <form runat="Server" class="body">
  27. <div id="content">
  28. <blog:SearchOnSearch runat="server" MaxResults="3" Headline="You searched for" Text="Here are some results for the search term on this website" />
  29. <asp:ContentPlaceHolder ID="cphBody" runat="server" />
  30. </div>
  31. <div id="sidepanel">
  32. <blog:WidgetZone runat="server" ZoneName="be_WIDGET_ZONE" />
  33. </div>
  34. </form>
  35. <div style="clear: both;">&nbsp;</div>
  36. <div id="footer">
  37. <p><a href="http://www.dotnetblogengine.net" target="_blank">BlogEngine.NET</a> <%=BlogSettings.Instance.Version() %>
  38. <br /><i>Titanium X</i> Theme by <a href="http://www.mgdking.com">MGD King</a></p>
  39. </div>
  40. </body>
  41. </html>