Restructuing
This commit is contained in:
@@ -0,0 +1,90 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
|
||||
<title>Chrono CCG - Card Gallery</title>
|
||||
<base href="/"/>
|
||||
<meta content="Explore the full collection of Chrono CCG cards. Filter by cost, faction, and type."
|
||||
name="description"/>
|
||||
<meta content="Chrono CCG, Reference, Card Gallery, DB" name="keywords"/>
|
||||
|
||||
<!-- Open Graph / Facebook -->
|
||||
<meta content="website" property="og:type"/>
|
||||
<meta content="https://chronoccg.com/" property="og:url"/>
|
||||
<meta content="Chrono CCG - Card Gallery" property="og:title"/>
|
||||
<meta content="Explore the full collection of Chrono CCG cards. Filter by cost, faction, and type."
|
||||
property="og:description"/>
|
||||
<meta content="https://chronoccg.com/favicon.png" property="og:image"/>
|
||||
|
||||
<!-- Twitter -->
|
||||
<meta content="summary_large_image" property="twitter:card"/>
|
||||
<meta content="https://chronoccg.com/" property="twitter:url"/>
|
||||
<meta content="Chrono CCG - Card Gallery" property="twitter:title"/>
|
||||
<meta content="Explore the full collection of Chrono CCG cards. Filter by cost, faction, and type."
|
||||
property="twitter:description"/>
|
||||
<meta content="https://chronoccg.com/favicon.png" property="twitter:image"/>
|
||||
|
||||
<link href="manifest.json" rel="manifest"/>
|
||||
<link href="icon-512.png" rel="apple-touch-icon" sizes="512x512"/>
|
||||
<link href="icon-192.png" rel="apple-touch-icon" sizes="192x192"/>
|
||||
<link href="https://fonts.googleapis.com" rel="preconnect"/>
|
||||
<link crossorigin href="https://fonts.gstatic.com" rel="preconnect"/>
|
||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap" rel="stylesheet"/>
|
||||
<link href="/lib/bootstrap-icons/bootstrap-icons.min.css" rel="stylesheet"/>
|
||||
<link href="/lib/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet"/>
|
||||
<link href="/_content/Telerik.UI.for.Blazor/css/kendo-theme-bootstrap/all.css" rel="stylesheet"/>
|
||||
<link href="/css/app.css" rel="stylesheet"/>
|
||||
<link href="/Standalone.styles.css" rel="stylesheet"/>
|
||||
<script defer src="/_content/Telerik.UI.for.Blazor/js/telerik-blazor.js"></script>
|
||||
<link href="/favicon.png" rel="icon" type="image/png"/>
|
||||
<script type="importmap"></script>
|
||||
<!-- Google tag (gtag.js) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-HVMP2QEJLR"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
|
||||
function gtag() {
|
||||
dataLayer.push(arguments);
|
||||
}
|
||||
|
||||
gtag('js', new Date());
|
||||
|
||||
gtag('config', 'G-HVMP2QEJLR');
|
||||
|
||||
window.trackPageView = (path) => {
|
||||
gtag('event', 'page_view', {
|
||||
page_path: path,
|
||||
page_location: window.location.origin + path
|
||||
});
|
||||
};
|
||||
</script>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="app">
|
||||
<div class="loading-screen">
|
||||
<div class="loading-content">
|
||||
<svg class="loading-ring" viewBox="0 0 100 100">
|
||||
<circle class="ring-track" cx="50" cy="50" r="42"/>
|
||||
<circle class="ring-fill" cx="50" cy="50" r="42"/>
|
||||
</svg>
|
||||
<div class="loading-icon">✦</div>
|
||||
</div>
|
||||
<h1 class="loading-title">Chrono CCG</h1>
|
||||
<p class="loading-subtitle">Card Gallery</p>
|
||||
<div class="loading-bar">
|
||||
<div class="loading-bar-track">
|
||||
<div class="loading-bar-fill"></div>
|
||||
</div>
|
||||
</div>
|
||||
<p class="loading-status"></p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script src="/_framework/blazor.webassembly.js"></script>
|
||||
<script>navigator.serviceWorker.register('service-worker.js');</script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
Reference in New Issue
Block a user