50 lines
2.3 KiB
Plaintext
50 lines
2.3 KiB
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>@ViewData["Title"] - eSPJ</title>
|
|
<script type="importmap"></script>
|
|
|
|
<!-- Theme Colors -->
|
|
<meta name="theme-color" content="#fb923c">
|
|
<meta name="msapplication-navbutton-color" content="#fb923c">
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="default">
|
|
|
|
<!-- Mobile Optimization -->
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
|
|
<meta name="mobile-web-app-capable" content="yes">
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<meta name="apple-mobile-web-app-title" content="SPJ Angkut">
|
|
|
|
<!-- iOS Icons -->
|
|
<link rel="apple-touch-icon" href="@Url.Content("~/driver/images/pwa_192.png")">
|
|
<link rel="apple-touch-icon" sizes="180x180" href="@Url.Content("~/driver/images/pwa_192.png")">
|
|
|
|
<!-- Windows Tiles -->
|
|
<meta name="msapplication-TileImage" content="@Url.Content("~/driver/images/pwa_192.png")">
|
|
<meta name="msapplication-TileColor" content="#fb923c">
|
|
|
|
<link rel="manifest" href="@Url.Content("~/driver/manifest.json")" />
|
|
@* <link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.min.css" /> *@
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="@Url.Content("~/driver/css/watch.css")" asp-append-version="true" />
|
|
<link rel="stylesheet" href="@Url.Content("~/driver/css/leaflet.css")" asp-append-version="true" />
|
|
<link rel="stylesheet" href="@Url.Content("~/driver/eSPJ.styles.css")" asp-append-version="true" />
|
|
@await RenderSectionAsync("Styles", required: false)
|
|
</head>
|
|
|
|
<body class="bg-gray-100">
|
|
|
|
@RenderBody()
|
|
|
|
@await Html.PartialAsync("~/Views/Admin/Transport/SpjDriverUpst/Shared/Components/_PWAinstall.cshtml")
|
|
@await Html.PartialAsync("~/Views/Admin/Transport/SpjDriverUpst/Shared/Partials/_Scripts.cshtml")
|
|
|
|
@await RenderSectionAsync("Scripts", required: false)
|
|
<dynamic-section name="scripts" />
|
|
</body>
|
|
</html>
|