-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
105 lines (103 loc) · 4.61 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>PIrates-Raspberry Pi</title>
<link rel="shortcut icon" href="img/raspberrypi.ico">
<!-- Bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="css/index.css" >
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light fixed-top top" id="top"></nav>
<div class="mt-4 p-5 text-black" style="background-color: #e9ecef;">
<h1 class="display-4">Welcome to our website. </h1>
<p class="lead"></p>
</div>
<div class="container" style="margin-top: 50px;">
<h4 class="display-6">Gantt chart of our project</h2>
<div id="chart_div"></div>
<h4 class="display-6">Calendar</h4>
<div id="Calendar">
<table class="table">
<thead>
<tr>
<th>Date</th>
<th>Participants</th>
<th>Events</th>
</tr>
</thead>
<tbody>
<tr>
<th>2023/03/28</th>
<th>PIrates</th>
<th>First team meeting on Software Requirements Specification & plan on learning bleak and AsyncIO.</th>
</tr>
</tbody>
<tbody>
<tr>
<th>2023/04/06</th>
<th>All Chinese students and Mr.Zhang</th>
<th>Quarrel on requirement analysis.</th>
</tr>
</tbody>
<tbody>
<tr>
<th>2023/04/11</th>
<th>PIrates</th>
<th>Team meeting on Software Design Specification.</th>
</tr>
</tbody>
<tbody>
<tr>
<th>2023/04/13</th>
<th>All Chinese students and Mr.Zhang</th>
<th>Confirming interface of APP team.</th>
</tr>
</tbody>
<tbody>
<tr>
<th>2023/04/18</th>
<th>PIrates</th>
<th>Talking about the importance of definition of interface.</th>
</tr>
</tbody>
</table>
</div>
<div class="row">
<div class="col-md-6">
<div class="card">
<!--<img src="https://via.placeholder.com/350x200" class="card-img-top" alt="...">-->
<div class="card-body">
<h5 class="card-title">News</h5>
<p class="card-text">There is news for every week.</p>
<div id="newstext"></div>
<a href="docs/news.html" class="btn btn-primary">Learn More</a>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card">
<!--<img src="https://via.placeholder.com/350x200" class="card-img-top" alt="...">-->
<div class="card-body">
<h5 class="card-title">Documents</h5>
<p class="card-text">All the documnets during the work.</p>
<div id="docstext"></div>
<a href="docs/documents.html" class="btn btn-primary">Learn More</a>
</div>
</div>
</div>
</div>
</div>
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<script src="https://code.jquery.com/jquery-1.12.4.min.js" integrity="sha256-ZosEbRLbNQzLpnKIkEdrPv7lOy9C27hHQ+Xp8a4MxAQ=" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN" crossorigin="anonymous"></script>
<script src="js/index.js"></script>
<script src="js/pages.js"></script>
<script src="js/gantt.js"></script>
<script>topbar(0); drawChart();</script>
<script>loadTitle();</script>
</body>
</html>