-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbase.html
More file actions
101 lines (94 loc) · 4.08 KB
/
base.html
File metadata and controls
101 lines (94 loc) · 4.08 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Base HTML for the project">
<meta name="author" content="Amey Khairnar et al.">
<title>LEDScoreboard - Home</title>
<link rel="canonical" href="https://srdesignledboard.github.io/base.html">
<!-- Bootstrap, JQuery, Popper, etc -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1"
crossorigin="anonymous"></script>
<link href="./stylesheets/bootstrap.min.css" rel="stylesheet">
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
crossorigin="anonymous"></script>
</head>
<body>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-dark bg-primary">
<a class="navbar-brand" href="./index.html">LEDScoreboard</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarColor01"
aria-controls="navbarColor01" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarColor01">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="./index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./features/features.html">Features</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./guide/guide.html">Guide</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./about/about.html">About</a>
</li>
</div>
</nav>
<!-- /Navbar -->
<!-- Footer -->
<footer class="container py-5">
<div class="row">
<div class="col-12 col-md">
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" stroke="currentColor"
stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="d-block mb-2" role="img"
viewBox="0 0 24 24">
<title>Product</title>
<circle cx="12" cy="12" r="10" />
<path
d="M14.31 8l5.74 9.94M9.69 8h11.48M7.38 12l5.74-9.94M9.69 16L3.95 6.06M14.31 16H2.83m13.79-4l-5.74 9.94" />
</svg>
</div>
<div class="col-6 col-md">
<h5>Features</h5>
<ul class="list-unstyled text-small">
<li><a class="link-secondary" href="../features/features.html">Cool stuff</a></li>
<li><a class="link-secondary" href="https://github.com/SrDesignLEDBoard">Stuff for developers</a></li>
</ul>
</div>
<div class="col-6 col-md">
<h5>Resources</h5>
<ul class="list-unstyled text-small">
<li><a class="link-secondary" href="https://www.raspberrypi.org/">Raspberry Pi</a></li>
<li><a class="link-secondary" href="https://www.adafruit.com/">Adafruit</a></li>
</ul>
</div>
<div class="col-6 col-md">
<h5>Leagues</h5>
<ul class="list-unstyled text-small">
<li><a class="link-secondary" href="https://www.nhl.com/">NHL</a></li>
<li><a class="link-secondary" href="https://www.nba.com/">NBA</a></li>
<li><a class="link-secondary" href="https://www.mlb.com/">MLB</a></li>
<li><a class="link-secondary" href="https://www.laliga.com/">La Liga</a></li>
</ul>
</div>
<div class="col-6 col-md">
<h5>About</h5>
<ul class="list-unstyled text-small">
<li><a class="link-secondary" href="./about/about.html#team">Team</a></li>
<li><a class="link-secondary" href="./about/privacy.html">Privacy</a></li>
</ul>
</div>
</div>
</footer>
<!-- /Footer -->
</body>
</html>