-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
34 lines (31 loc) · 2.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" href="/src/assets/calendar-204x192.png">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no" >
<title>Calendar - Vue3</title>
<meta name="description" content="This is a Vue 3 application that showcases usage of fullcalendar for tutorial purposes.">
<meta name="keywords" content="vue, fullcalendar, tutorial, example, composition API">
<meta property="og:title" content="Vue3 fullcalendar app">
<meta property="og:site_name" content="Vue3 - fullcalendar app">
<meta property="og:type" content="website">
<meta property="og:description" content="This is a Vue 3 application that showcases usage of fullcalendar for tutorial purposes.">
<meta property="og:image" content="https://raw.githubusercontent.com/YSHgroup/vue3-fullcalendar-bootstrap/main/src/assets/fullcalendar-first-page.png">
<meta property="og:image:width" content="1200">
<meta property="og:image:height" content="600">
<meta property="og:image:alt" content="Fullcalendar screen" />
<meta property="og:url" content="https://yshgroup.github.io/vue3-fullcalendar-bootstrap/">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Vue3 - fullcalendar app">
<meta name="twitter:description" content="This is a Vue 3 application that showcases usage of fullcalendar for tutorial purposes.">
<meta name="twitter:image" content="https://raw.githubusercontent.com/YSHgroup/vue3-fullcalendar-bootstrap/main/src/assets/fullcalendar-first-page.png">
<meta name="robots" content="index, follow">
<link rel="image_src" href="https://raw.githubusercontent.com/YSHgroup/vue3-fullcalendar-bootstrap/main/src/assets/fullcalendar-first-page.png?format=1500w">
<link rel="canonical" href="https://yshgroup.github.io/vue3-fullcalendar-bootstrap/">
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>