This repository has been archived by the owner on Dec 22, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
club.html
47 lines (42 loc) · 1.76 KB
/
club.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
<html>
<head>
<meta charset="utf-8">
<title>Club | SAM by Computerization</title>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="/framework/geodesic/base.css" type="text/css">
<link rel="stylesheet" href="/framework/geodesic/settings.css" type="text/css">
<link rel="stylesheet" href="/framework/sam/main.css" type="text/css">
<link rel="stylesheet" href="/framework/sam/banner.css" type="text/css">
<link rel="stylesheet" href="/framework/sam/club.css" type="text/css">
<script src="/framework/js/vue.min.js"></script>
<script src="/framework/js/axios.min.js"></script>
<script src="/template/scripts/user.js"></script>
<script src="/template/scripts/club.js"></script>
<script>
function showModule(id) {
window.location.href = "/" + id +'.html';
}
</script>
</head>
<body>
<div class="banner-pc banner-mobile">
<p id="left-banner">
<img src="/framework/sam/SAM_logo.svg" />
<span><lead>S</lead>AM </span>
</p>
<img id="avatar" src="/framework/material-images/user.png" height="40px">
<p id="right-banner">
<span class="app" onclick="showModule('dashboard');">Dashboard</span>
<span class="app app-current" onclick="showModule('club');">Club</span>
<span class="app" onclick="showModule('classes');">Classes</span>
<span class="app" onclick="showModule('contacts');">Contacts</span>
<span class="app" onclick="showModule('settings');">Settings</span>
</p>
</div>
<div id="club">
<div id="club-list">
<club v-for="item in clubs" :json="item"></club>
</div>
</div>
</body>
</html>