-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpopup.html
49 lines (46 loc) · 1.86 KB
/
popup.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
<html>
<head>
<title>課程評價蒐集器</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="dist/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="dist/popup.css" />
</head>
<body>
<div class="container pt-4">
<h2 class="text-center mt-2">⭐ 課程評價</h2>
<h6 id="heading"class="text-center mt-3"></h6>
</div>
<div class="container-lg py-1">
<header class="d-flex justify-content-center py-3">
<ul class="nav justify-content-center nav-pills">
<li class="nav-item">
<a class="btn nav-link nav-switch active mx-1" data-id="ptt">批踢踢</a>
</li>
<li class="nav-item">
<a class="btn nav-link nav-switch mx-1" data-id="dcard">Dcard</a>
</li>
<li class="nav-item">
<a class="btn nav-link nav-switch mx-1" data-id="ntu-rating">NTU Rating</a>
</li>
</ul>
</header>
</div>
<section>
<div class="container-lg py-3">
<div class="row row-cols-1 row-cols-md-1 justify-content-center results">
</div>
</div>
</section>
<div class="container">
<footer class="pb-2 pt-1 mb-2">
<ul class="nav justify-content-center border-bottom pb-3 mb-3">
<li class="nav-item"><a href="https://jcshawn.com/about" class="nav-link px-2 text-muted footer-link">Author</a></li>
<li class="nav-item"><a href="https://github.com/jschang19" class="nav-link px-2 text-muted footer-link">GitHub</a></li>
</ul>
<p class="text-center text-muted">Coded with ❤️ by Shawn © 2022</p>
</footer>
</div>
</body>
<script src="dist/jquery-3.6.3.min.js"></script>
<script src="dist/popup.js" defer></script>
</html>