-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathppt-list.js
More file actions
105 lines (103 loc) · 2.96 KB
/
ppt-list.js
File metadata and controls
105 lines (103 loc) · 2.96 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
// PPT 项目配置文件
// 创建新的 PPT 项目后,请在这里添加项目信息和文件列表
window.pptProjects = {
'shenzhen': {
name: 'AI³ 深圳站迷你黑客松',
description: 'AI+Web3黑客松活动演示文稿',
badge: '活动',
badgeClass: 'event',
files: [
'01-cover.html',
'02-introduction.html',
'03-theme.html',
'04-details.html',
'05-schedule.html',
'06-participants.html',
'07-benefits.html',
'08-team-guide.html',
'09-mentors.html',
'10-awards.html',
'11-submission.html',
'12-partners.html',
'13-contact.html',
'14-awards-ceremony.html',
'15-team-formation.html',
'16-thanks.html'
]
},
'guangzhou': {
name: 'AI³ 广州站迷你黑客松',
description: 'Build your first AI Agent on Web3 Infra',
badge: '活动',
badgeClass: 'event',
files: [
'01-cover.html',
'06-schedule.html',
'02-introduction.html',
'11-workshop.html',
// '03-theme.html',
'04-tracks.html',
// '05-details.html',
// '07-participants.html',
// '08-benefits.html',
'09-team-guide.html',
'10-mentors.html',
// '12-awards.html',
'13-submission.html',
'14-partners.html',
'15-contact.html',
'16-awards-ceremony.html',
'17-thanks.html'
]
},
'default': {
name: '默认演示',
description: 'HTML PPT模板介绍',
badge: '默认',
badgeClass: 'default',
files: [
'01-cover.html',
'02-features.html',
'03-quickstart.html',
'04-operation.html',
'05-philosophy.html',
'06-examples.html',
'07-tech.html',
'08-thanks.html'
]
},
'examples/minimal': {
name: '极简主义',
description: '简洁优雅、专业商务',
badge: '商务',
badgeClass: 'professional',
files: [
'01-cover.html',
'02-content.html',
'03-thanks.html'
]
},
'examples/neobrutalism': {
name: '新野兽派',
description: '大胆色彩、强视觉冲击',
badge: '创意',
badgeClass: 'creative',
files: [
'01-cover.html',
'02-content.html',
'03-thanks.html'
]
}
// 添加新项目示例:
// 'my-presentation': {
// name: '我的演示',
// description: '自定义演示文稿',
// badge: '自定义',
// badgeClass: 'custom',
// files: [
// '01-cover.html',
// '02-content.html',
// '03-thanks.html'
// ]
// }
};