-
Notifications
You must be signed in to change notification settings - Fork 1
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
1 parent
1561b63
commit 5a2d357
Showing
1 changed file
with
24 additions
and
15 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 |
---|---|---|
@@ -1,20 +1,29 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
|
||
<link rel="icon" type="image/svg+xml" href="%sveltekit.assets%/brand/icon.svg" /> | ||
<link rel="alternate icon" type="image/png" href="%sveltekit.assets%/brand/icon@128.png" /> | ||
<link rel="apple-touch-icon" href="%sveltekit.assets%/brand/icon@128.png" sizes="128x128" /> | ||
<head> | ||
<meta charset="utf-8" /> | ||
|
||
<meta | ||
name="viewport" | ||
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" | ||
/> | ||
<link rel="icon" type="image/svg+xml" href="%sveltekit.assets%/brand/icon.svg" /> | ||
<link rel="alternate icon" type="image/png" href="%sveltekit.assets%/brand/icon@128.png" /> | ||
<link rel="apple-touch-icon" href="%sveltekit.assets%/brand/icon@128.png" sizes="128x128" /> | ||
|
||
%sveltekit.head% | ||
</head> | ||
<body data-sveltekit-preload-data="hover"> | ||
<div style="display: contents">%sveltekit.body%</div> | ||
</body> | ||
</html> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> | ||
|
||
%sveltekit.head% | ||
</head> | ||
<!-- Google tag (gtag.js) --> | ||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-SCXFQBRZMS"></script> | ||
<script> | ||
window.dataLayer = window.dataLayer || []; | ||
function gtag() { dataLayer.push(arguments); } | ||
gtag('js', new Date()); | ||
|
||
gtag('config', 'G-SCXFQBRZMS'); | ||
</script> | ||
|
||
<body data-sveltekit-preload-data="hover"> | ||
<div style="display: contents">%sveltekit.body%</div> | ||
</body> | ||
|
||
</html> |