PageRenderTime 26ms CodeModel.GetById 0ms RepoModel.GetById 1ms app.codeStats 0ms

/BlogEngine/BlogEngine.NET/themes/RazorHost/site.master

#
ASP.NET | 21 lines | 16 code | 5 blank | 0 comment | 0 complexity | fd0a9869c46a1e5745c1aff5135172e1 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="RazorHostSite" %>
  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">
  6. <title></title>
  7. <asp:PlaceHolder ID="phRazorHead" runat="server" EnableViewState="false"></asp:PlaceHolder>
  8. </head>
  9. <body<%= BodyAttributes %>>
  10. <form runat="Server" class="body">
  11. <asp:PlaceHolder ID="phBeforePageBody" runat="server" EnableViewState="false"></asp:PlaceHolder>
  12. <asp:ContentPlaceHolder ID="cphBody" runat="server" />
  13. <asp:PlaceHolder ID="phAfterPageBody" runat="server" EnableViewState="false"></asp:PlaceHolder>
  14. </form>
  15. </body>
  16. </html>