-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (49 loc) · 3.07 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible" />
<meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport" />
<link crossorigin="crossorigin" href="https://fonts.gstatic.com" rel="preconnect" />
<link as="style" href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="preload" />
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap" rel="stylesheet" />
<link crossorigin="anonymous" href="/assets/styles/main.min.css" media="screen" rel="stylesheet" />
<link rel="stylesheet" href="https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css" />
<script src="https://cdn.jsdelivr.net/npm/marked@2.1.3/marked.min.js"></script>
<script src="https://unpkg.com/@shaun/alpinejs-router@1.x.x/dist/cdn.min.js" defer></script>
<script src="https://unpkg.com/alpinejs-head@latest/dist/head.min.js" defer></script>
<script src="https://unpkg.com/alpinejs@3.x.x/dist/cdn.min.js" defer></script>
<meta name="author" content="revert@revert.pl">
<meta name="theme-color" content="#7AC1D1">
<link rel="manifest" href="site.webmanifest">
<link rel="apple-touch-icon" href="assets/img/favicon/apple-touch-icon.png" sizes="180x180">
<link rel="icon" href="assets/img/favicon/favicon.ico">
<link rel="icon" href="assets/img/favicon/favicon-32x32.png" sizes="32x32" type="image/png">
<link rel="icon" href="assets/img/favicon/favicon-16x16.png" sizes="16x16" type="image/png">
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@tailwindmade" />
<meta property="og:locale" content="en_US" />
<meta property="og:image" content="https://alpinejs-spa.netlify.app/assets/img/social.jpg" />
<meta property="og:url" content="https://alpinejs-spa.netlify.app/" />
<meta property="og:site_name" content="AlpineJS SPA Template" />
<meta property="og:title" content="AlpineJS SPA Template" />
<title>AlpineJS SPA Template</title>
</head>
<body x-data="global()" x-init="themeInit()" :class="isMobileMenuOpen ? 'max-h-screen overflow-hidden relative' : ''" class="dark:bg-primary text-primary dark:text-white">
<header>
<template x-route="/|/:page" template.preload="/partials/header.html"></template>
</header>
<main>
<template x-route="/" template="/pages/home.html"></template>
<template x-route="/blog/comment|/blog/comment/:slug" template="/pages/blog/comment.html"></template>
<template x-route="/blog/:slug" template="/pages/blog/post.html"></template>
<template x-route="/blog" template="/pages/blog.html"></template>
<template x-route="/about" template="/pages/about.html"></template>
<template x-route="/contact" template="/pages/contact.html"></template>
</main>
<footer>
<template x-route="/|/:page" template.preload="/partials/footer.html"></template>
</footer>
<script src="/assets/js/main.js"></script>
</body>
</html>