67 lines
2.7 KiB
Plaintext
67 lines
2.7 KiB
Plaintext
@{
|
|
IgnoreSection("jsLib");
|
|
IgnoreSection("jsPage");
|
|
IgnoreBody();
|
|
}
|
|
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
|
|
<meta name="idPage" content="@ViewData["PageID"]" pageName="Trans World Aviation" layName="@ViewData["LayoutName"]" flexPage="@ViewData["FlexPage"]" />
|
|
<title></title>
|
|
<link rel="icon" type="image/png" sizes="32x32" href="@Url.AbsoluteContent("~/images/logo/icon.png")">
|
|
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap" rel="stylesheet" />
|
|
<link href="https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap" rel="stylesheet" />
|
|
<link rel="stylesheet" href="~/css/atg-lib/atg-core.css" />
|
|
<link rel="stylesheet" href="~/css/atg-lib/swiper-bundle.min.css" />
|
|
<link rel="stylesheet" href="~/css/site.css" />
|
|
<link rel="stylesheet" href="~/css/atg-font/atg-admin-font.css" />
|
|
</head>
|
|
<body>
|
|
<section data-scrollbar class="main-scrollbar">
|
|
<div class="loading"></div>
|
|
<div class="main-wrapper" app-content>
|
|
<header id="header"></header>
|
|
<div class="main-container">
|
|
<main main-content>
|
|
|
|
</main>
|
|
</div>
|
|
</div>
|
|
<footer id="footer">
|
|
</footer>
|
|
</section>
|
|
<script src="@Url.AbsoluteContent("~/js/libs/js-core.js")"></script>
|
|
<section app-js-lib>
|
|
<script src="@Url.AbsoluteContent("~/js/ext_libs/js-scrollbar.js")" js-lib></script>
|
|
<script src="@Url.AbsoluteContent("~/js/libs/js-waves.js")" js-lib></script>
|
|
</section>
|
|
<section app-js-page>
|
|
</section>
|
|
<script>
|
|
window.requestTimeout(() => {
|
|
window.app = new AApp('[app-content] > .main-container');
|
|
(function () {
|
|
var asyncStyleSheets = [
|
|
'@Url.AbsoluteContent("~/css/atg-lib/atg-core.css")',
|
|
'@Url.AbsoluteContent("~/css/site.css")'
|
|
];
|
|
window.app.loadCSS(asyncStyleSheets);
|
|
})();
|
|
(function () {
|
|
window.app.render();
|
|
window.app.initScrollBar();
|
|
|
|
var asyncStyleSheets = [
|
|
'https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap',
|
|
'/css/atg-font/atg-admin-font.css',
|
|
'/css/atg-lib/waves.min.css'
|
|
];
|
|
window.app.loadCSS(asyncStyleSheets);
|
|
})();
|
|
}, 5, window.registerCancel);
|
|
</script>
|
|
</body>
|
|
</html>
|