-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathother.shtml
executable file
·41 lines (39 loc) · 1.02 KB
/
other.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
<!DOCTYPE html>
<html>
<head>
<!--#include file="content/templates/head.html"-->
<base target="_blank" />
<title>Other Page | WebCards</title>
</head>
<body onload="loadCards()">
<div id="topMenu">
<span><a href="/" target="_self">WebCards</a> > Other</span>
</div>
<div id="cards">
<ul class="gNow even">
<li>
<div class="card even" id="Something">
<!--#include file="content/cards/other/Something.html"-->
</div>
</li>
<li>
<div class="card even" id="SomethingElse">
<!--#include file="content/cards/other/SomethingElse.html"-->
</div>
</li>
</ul>
<ul class="gNow even">
<li>
<div class="card even" id="Other">
<!--#include file="content/cards/other/Other.html"-->
</div>
</li>
<li>
<div class="card even" id="Another">
<!--#include file="content/cards/other/Another.html"-->
</div>
</li>
</div>
<!--#include file="content/templates/footer.html"-->
</body>
</html>