-
Notifications
You must be signed in to change notification settings - Fork 14
/
contact.html
201 lines (198 loc) · 5.33 KB
/
contact.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
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
<!DOCTYPE html><html><head>
<meta charset="utf-8">
<title>Gaclib -- Contact</title>
<link rel="shortcut icon" href="favicon.ico">
<link rel="stylesheet" type="text/css" href="global.css">
<link rel="stylesheet" type="text/css" href="article.css">
<link rel="stylesheet" type="text/css" href="navigation.css">
<script src="scripts/rootView.js"></script>
<script src="scripts/articleView.js"></script>
</head>
<body>
<div id="MVC-ViewContainer"></div>
<script lang="javascript">
{
const mvcModel = {
"page": "contact"
};
const mvcViews = [
{
"targetObject": "MVC-ViewContainer",
"viewName": "Gaclib-RootView"
},
{
"targetObject": "rootViewContainer",
"viewName": "Gaclib-ArticleView"
}
];
const activeButton = "Contact";
const article = {
"index": false,
"numberBeforeTitle": false,
"topic": {
"kind": "Topic",
"title": "Contact Developers",
"content": [
{
"kind": "Paragraph",
"content": [
{
"kind": "Text",
"text": "\n Gaclib team members:\n "
}
]
},
{
"kind": "Paragraph",
"content": [
{
"kind": "List",
"ordered": false,
"items": [
{
"kind": "ContentListItem",
"content": [
{
"kind": "PageLink",
"href": "https://github.com/vczh",
"content": [
{
"kind": "Text",
"text": "vczh (Zihan Chen)"
}
]
},
{
"kind": "Text",
"text": " : Develops everything"
}
]
},
{
"kind": "ContentListItem",
"content": [
{
"kind": "PageLink",
"href": "https://github.com/darkfall",
"content": [
{
"kind": "Text",
"text": "darkfall (Ruiwei Bu)"
}
]
},
{
"kind": "Text",
"text": " : Ports GacUI to macOS"
}
]
},
{
"kind": "ContentListItem",
"content": [
{
"kind": "PageLink",
"href": "https://github.com/roodkcab",
"content": [
{
"kind": "Text",
"text": "buaacss"
}
]
},
{
"kind": "Text",
"text": " : Ports GacUI to macOS and Linux"
}
]
},
{
"kind": "ContentListItem",
"content": [
{
"kind": "PageLink",
"href": "https://github.com/milizhang",
"content": [
{
"kind": "Text",
"text": "MiliMeow (Yi Zhang)"
}
]
},
{
"kind": "Text",
"text": " : Ports GacUI to Linux"
}
]
}
]
}
]
},
{
"kind": "Paragraph",
"content": [
{
"kind": "Text",
"text": "\n Alternatives:\n "
}
]
},
{
"kind": "Paragraph",
"content": [
{
"kind": "List",
"ordered": false,
"items": [
{
"kind": "ContentListItem",
"content": [
{
"kind": "Text",
"text": "QQ Group (Chinese): 231200072"
}
]
},
{
"kind": "ContentListItem",
"content": [
{
"kind": "Text",
"text": "Telegram Group: "
},
{
"kind": "PageLink",
"href": "https://t.me/+rsTpEK1qFrYwZTYx",
"content": [
{
"kind": "Text",
"text": "Invite Link"
}
]
}
]
}
]
}
]
}
]
}
};
window["MVC-Resources.mvcModel"] = mvcModel;
window["MVC-Resources.mvcViews"] = mvcViews;
window["MVC-Resources.activeButton"] = activeButton;
window["MVC-Resources.article"] = article;
for (const view of mvcViews) {
window[view.viewName].renderView(mvcModel, document.getElementById(view.targetObject));
}
const renderedScriptTags = document.getElementById("MVC-ViewContainer").getElementsByTagName("script");
for (const scriptTag of renderedScriptTags) {
eval(
"(function(){" + scriptTag.innerHTML + "})()"
);
}
}
</script>
</body></html>