-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (63 loc) · 2.34 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
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/jpg" href="/img/UCalendar.jfif" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>
UCalendar、日历、日程、你的日历
</title>
<meta name="description" content="作者:林Round;UCalendar,让生活更简单,让工作更轻松;行程安排、出行计划、工作总结的好帮手">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Event",
"name": "日历事件名称",
"startDate": "2025-07-21T19:00-05:00",
"endDate": "2025-07-21T23:00-05:00",
"eventAttendanceMode": "全天",
"eventStatus": "事件状态",
"location": {
"@type": "Place",
"name": "会议室202",
"address": {
"@type": "PostalAddress",
"streetAddress": "广州市",
"addressLocality": "中国",
"postalCode": "19019",
"addressRegion": "PA",
"addressCountry": "CN"
}
},
"image": [
"https://ucalendar.cn/img/UCalendar.png",
"https://ucalendar.cn/img/UCalendar.png",
"https://ucalendar.cn/img/UCalendar.png"
],
"description": "今天去会议室讨论下周的工作计划",
"offers": {
"@type": "Offer",
"url": "https://ucalendar.cn",
"price": "30",
"priceCurrency": "",
"availability": "",
"validFrom": "2024-05-21T12:00"
},
"performer": {
"@type": "PerformingGroup",
"name": "张三和李四"
},
"organizer": {
"@type": "Organization",
"name": "组织者名称",
"url": "https://ucalendar.cn"
}
}
</script>
<link rel="canonical" href="https://ucalendar.cn/" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>