generated from NetCoreTemplates/razor-ssg
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
10 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,10 @@ | |
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-7722718-13"></script> | ||
<script>window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} | ||
gtag('js', new Date()); gtag('config', 'UA-7722718-13');</script> | ||
|
||
<meta charset="utf-8"/> | ||
<meta name='date' content='@DateTime.UtcNow.ToString("O")'> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
|
@@ -20,14 +24,16 @@ | |
@await RenderSectionAsync("Head", required: false) | ||
|
||
<script async src="https://ga.jspm.io/npm:[email protected]/dist/es-module-shims.js"></script> | ||
@Html.ImportMap(new() { | ||
["app.mjs"] = ("/mjs/app.mjs", "/mjs/app.mjs"), | ||
["vue"] = ("/lib/mjs/vue.mjs", "/lib/mjs/vue.min.mjs"), | ||
@Html.ImportMap(new() | ||
{ | ||
["app.mjs"] = ("/mjs/app.mjs", "/mjs/app.mjs"), | ||
["vue"] = ("/lib/mjs/vue.mjs", "/lib/mjs/vue.min.mjs"), | ||
["@servicestack/client"] = ("/lib/mjs/servicestack-client.mjs", "/lib/mjs/servicestack-client.min.mjs"), | ||
["@servicestack/vue"] = ("/lib/mjs/servicestack-vue.mjs", "/lib/mjs/servicestack-vue.min.mjs"), | ||
["@servicestack/vue"] = ("/lib/mjs/servicestack-vue.mjs", "/lib/mjs/servicestack-vue.min.mjs"), | ||
}) | ||
</head> | ||
<body class="bg-white dark:bg-black dark:text-white"> | ||
|
||
@await Html.PartialAsync("Header") | ||
|
||
<div class="min-h-screen"> | ||
|