-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.shtml
executable file
·45 lines (44 loc) · 1.12 KB
/
index.shtml
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
<!DOCTYPE html>
<html>
<head>
<!--#include file="content/templates/head.html"-->
<title>WebCards</title>
</head>
<body onload="loadCards()">
<div id="topMenu">
<span>WebCards</span>
</div>
<div id="cards">
<ul class="gNow primary">
<li>
<div class="card primary startExpanded" id="Main">
<!--#include file="content/cards/index/primary/main.html"-->
</div>
</li>
<li>
<div class="card primary" id="LargeCard">
<!--#include file="content/cards/index/primary/large.html"-->
</div>
</li>
</ul>
<ul class="gNow secondary">
<li>
<div class="card secondary startExpanded" id="Social">
<!--#include file="content/cards/index/secondary/social.html"-->
</div>
</li>
<li>
<div class="card secondary" id="Extralife">
<!--#include file="content/cards/index/secondary/extra-life.html"-->
</div>
</li>
<li>
<div class="card secondary" id="Credits">
<!--#include file="content/cards/index/secondary/credits.html"-->
</div>
</li>
</ul>
</div>
<!--#include file="content/templates/footer.html"-->
</body>
</html>