﻿@using System.Web.Optimization
@{
    Layout = null;
}

<!DOCTYPE html>
<html manifest="">
<head>
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta charset="UTF-8">
    <title>@ViewBag.Title</title>
    @if (Context.IsDebuggingEnabled)
    {
        @Styles.Render("~/Scripts/build/development/VeeamCloud/resources/VeeamCloud-all.css")
        @Scripts.Render("~/bundles/js/ext")
        @Scripts.Render("~/bundles/js/app")

    }
    else
    {

        @Styles.Render("~/Scripts/build/production/VeeamCloud/resources/VeeamCloud-all.css")
        <script>
            Ext = window.Ext || {};
            Ext.Boot = {};
            Ext.platformTags = {};
        </script>
        @Scripts.Render("~/Scripts/libs/eventsource.min.js")
        @Scripts.Render("~/Scripts/build/production/VeeamCloud/app.js")
    }

</head>
<body>
</body>
</html>
