-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (41 loc) · 2.37 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Todo List App</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Simple todo list app with Vue + Vite + Vite PWA.">
<meta name="keywords" content="vue, vuejs, vite, pwa, vite-pwa, source-code, open-source">
<meta name="author" content="ibnusyawall">
<link rel="icon" href="/favicon.ico" sizes="48x48">
<link rel="icon" href="/logo.svg" sizes="any" type="image/svg+xml">
<link rel="apple-touch-icon" href="/apple-touch-icon-180x180.png">
<link rel="apple-touch-startup-image" media="screen and (device-width: 768px) and (device-height: 1024px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait)" href="/apple-splash-portrait-light-1536x2048.png">
<link rel="apple-touch-startup-image" media="screen and (device-width: 768px) and (device-height: 1024px) and (-webkit-device-pixel-ratio: 2) and (orientation: landscape)" href="/apple-splash-landscape-light-2048x1536.png">
<link rel="mask-icon" href="/maskable-icon-512x512.png">
<meta name="theme-color" content="#ffffff">
<meta itemprop="name" content="Todo List App">
<meta itemprop="description" content="Simple todo list app with Vue + Vite + Vite PWA.">
<meta itemprop="url" content="https://syawal.dev/showcase/todo-list-vue-pwa">
<meta property="og:type" content="website">
<meta property="og:url" content="https://syawal.dev/showcase/todo-list-vue-pwa">
<meta property="og:locale" content="id_ID">
<meta property="og:site_name" content="syawal.dev">
<meta property="og:title" content="Todo List App">
<meta property="og:description" content="Simple todo list app with Vue + Vite + Vite PWA.">
<meta name="twitter:domain" content="syawal.dev/showcase/todo-list-vue-pwa">
<meta name="twitter:title" content="Todo List App">
<meta name="twitter:description" content="Simple todo list app with Vue + Vite + Vite PWA.">
<meta name="twitter:card" content="summary">
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh"
crossorigin="anonymous"
/>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>