<%@ Master Language="C#" AutoEventWireup="true" Inherits="Veeam.Backup.WebApp.MasterPage"
    EnableViewState="false" CodeBehind="MasterPage.master.cs" %>

<html xmlns="http://www.w3.org/1999/xhtml">
<head id="head" runat="server">
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
    <title>
        <%= GetTitle() %></title>
    <asp:ContentPlaceHolder ID="favicon" runat="server">
    <link rel="shortcut icon" href="/favicon.ico?v=9" type="image/x-icon" />
    </asp:ContentPlaceHolder>
    <%= BuildCssTags() %>
    <!--[if IE]>
    <link rel="stylesheet" type="text/css" href="<%= GetResourceFile("/css/ie.css") %>" />
    <![endif]-->

    <%= CommonHandlerPath() %>
    <%= BuildScriptTags() %>
   
</head>
<body>
    <script type="text/javascript">

  <%= GetDefaults() %>
    </script>
    <input type="hidden" id="x-history-field" />
    <iframe id="x-history-frame" class="x-hidden" src="javascript:false"></iframe>
    <asp:ContentPlaceHolder ID="content" runat="server">
    </asp:ContentPlaceHolder>
</body>
</html>
