PageRenderTime 44ms CodeModel.GetById 20ms RepoModel.GetById 0ms app.codeStats 0ms

/BlogEngine/BlogEngine.NET/themes/Indigo/site.master

#
ASP.NET | 76 lines | 25 code | 4 blank | 47 comment | 1 complexity | ebbca7842fc589a05dbba37e2fc8c528 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="IndigoSite" %>
  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-strict.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. <div class="container">
  12. <div class="header">
  13. <div class="title">
  14. <h1><a href="<%= Utils.RelativeWebRoot %>"><%=BlogSettings.Instance.Name %></a></h1>
  15. <%=BlogSettings.Instance.Description %>
  16. </div>
  17. </div>
  18. <div class="main">
  19. <form id="Form1" runat="server">
  20. <div class="content">
  21. <blog:SearchOnSearch ID="SearchOnSearch1" runat="server" MaxResults="3" Headline="You searched for" Text="Here are some results for the search term on this website" />
  22. <asp:ContentPlaceHolder ID="cphBody" runat="server" />
  23. </div>
  24. <div class="sidenav">
  25. <blog:WidgetZone runat="server" ZoneName="be_WIDGET_ZONE" />
  26. <%--
  27. <h1>Search</h1>
  28. <blog:SearchBox runat="server" />
  29. <% if (Security.IsAuthenticated){ %>
  30. <h1>Administration</h1>
  31. <uc1:menu ID="Menu1" runat="server" />
  32. <%} %>
  33. <h1>Calendar</h1>
  34. <blog:PostCalendar ID="PostCalendar1" runat="Server" NextMonthText=">>" DayNameFormat="FirstTwoLetters" FirstDayOfWeek="sunday" PrevMonthText="<<" CssClass="calendar" BorderWidth="0" WeekendDayStyle-CssClass="weekend" OtherMonthDayStyle-CssClass="other" UseAccessibleHeader="true" EnableViewState="false" />
  35. <h1>Archive</h1>
  36. <blog:MonthList ID="MonthList1" runat="server" />
  37. <h1>Tags</h1>
  38. <blog:TagCloud ID="TagCloud1" runat="server" />
  39. <h1>Categories</h1>
  40. <blog:CategoryList ID="CategoryList1" ShowRssIcon="false" runat="Server" /><br />
  41. <h1>Blogroll</h1>
  42. <blog:Blogroll runat="server" />
  43. <h1>Disclaimer</h1>
  44. <p>The opinions expressed herein are my own personal opinions and do not represent my employer's view in anyway.</p>
  45. <p>&copy; Copyright <%=DateTime.Now.Year %></p>--%>
  46. <% if (Utils.IsMobile)
  47. { %>
  48. <p><blog:MobileThemeSwitch ID="MobileThemeSwitch1" runat="server" /></p>
  49. <%
  50. }
  51. %>
  52. <p><asp:HyperLink ID="hypLoginStatus" runat="server"></asp:HyperLink></p>
  53. </div>
  54. <div class="clearer"><span></span></div>
  55. </form>
  56. </div>
  57. </div>
  58. <div class="footer">
  59. Powered by <a href="http://www.dotnetblogengine.net/" target="_blank">BlogEngine.NET</a> <%=BlogSettings.Instance.Version() %> |
  60. Original Design by <a href="http://arcsin.se">Arcsin</a>, Adapted by <a href="http://www.nyveldt.com/blog/">RazorAnt</a>
  61. </div>
  62. </body>
  63. </html>