-
Notifications
You must be signed in to change notification settings - Fork 3
/
article.html
67 lines (67 loc) · 3.64 KB
/
article.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="og:title" content="The Western Music">
<meta name="og:type" content="website">
<meta name="og:url" content="https://developers-rccs.github.io/wstrn-music-site/">
<meta name="og:image" content="https://developers-rccs.github.io/wstrn-music-site/assets/logoWesternMusic.png">
<meta name="og:description" content="This is an application created by the Computer Society and the Western Music Society of Royal College to promote western music culture within students">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="icon" type="image/png" href="assets/favicon.png"/>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
<title>The Western Music</title>
</head>
<body>
<nav class="container navbar">
<a href="index.html" class="navbar-brand ml-md-4 d-flex align-items-center">
<img style="margin: 0;" height="30" src="assets/logoWesternMusic.png"/>
<strong class="ml-2">The Western Music</strong>
</a>
<ul class="nav">
<li class="nav-item mx-1"><a class="btn btn-outline-light btn-sm" href="index.html">
Home
</a></li>
<li class="nav-item mx-1"><a class="btn btn-light btn-sm" href="index.html#contentSection">
Read Book
</a></li>
</ul>
</nav>
<main>
<div class="container">
<div class="row justify-content-between mt-2">
<a class="btn btn-lg btn-nav" href="#"><< Previous</a>
<a class="btn btn-lg btn-nav" href="#">Next >></a>
</div>
</div>
<div id="contentSection" class="container-fluid py-3 mb-5">
<div id="title" class="display-4 sectiontitle mb-5 ml-sm-4 pl-sm-4 pl-2"></div>
<div id="contentBody" class="container px-0"></div>
</div>
<div class="container">
<div class="row justify-content-between mt-2">
<a class="btn btn-lg btn-nav" href="#"><< Previous</a>
<a class="btn btn-lg btn-nav" href="#">Next >></a>
</div>
</div>
</main>
<footer>
<hr color="grey" width="40%"/>
<div class="my-1 text-center" style="font-size: 0.9rem;">A project by Royal College Western Music Society & Royal College Computer Society</div>
<div><center>
<img height="120" src="assets/wms_logo.png" />
<img height="120" src="assets/rccs_logo.png" />
</center></div>
<hr color="grey" width="40%"/>
</footer>
<script type="text/javascript" src="data/contents.js"></script>
<script type="text/javascript" src="js/utils.js"></script>
<script type="text/javascript" src="js/article.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<script>main();</script>
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js" integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
</body>
</html>