You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
881 B

4 years ago
  1. <%@ Master Language="C#" AutoEventWireup="true" CodeBehind="Site.Mobile.master.cs" Inherits="$rootnamespace$.Site_Mobile" %>
  2. <%@ Register Src="~/ViewSwitcher.ascx" TagPrefix="friendlyUrls" TagName="ViewSwitcher" %>
  3. <!DOCTYPE html>
  4. <html xmlns="http://www.w3.org/1999/xhtml">
  5. <head runat="server">
  6. <meta name="viewport" content="width=device-width" />
  7. <title></title>
  8. <asp:ContentPlaceHolder runat="server" ID="HeadContent" />
  9. </head>
  10. <body>
  11. <form id="form1" runat="server">
  12. <div>
  13. <h1>Mobile Master Page</h1>
  14. <asp:ContentPlaceHolder runat="server" ID="FeaturedContent" />
  15. <section class="content-wrapper main-content clear-fix">
  16. <asp:ContentPlaceHolder runat="server" ID="MainContent" />
  17. </section>
  18. <friendlyUrls:ViewSwitcher runat="server" />
  19. </div>
  20. </form>
  21. </body>
  22. </html>