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

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

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

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