-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
150 lines (138 loc) · 6.42 KB
/
index.html
File metadata and controls
150 lines (138 loc) · 6.42 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Manages the styles etc for the design e.g. don't touch unless you know what you're doing!-->
<title>devCharles</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,
initial-scale=1">
<title>devCharles</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="index.css">
</head>
<body>
<section class="hero is-fullheight">
<!-- Hero head: will stick at the top -->
<div class="hero-head">
<nav class="navbar">
<div class="container">
<div class="navbar-brand">
<!-- Logo placeholder-->
<a class="navbar-item" href="index.html">
<img class="logo" src="images/logo-light.png" alt="logo">
</a>
<span class="navbar-burger" data-target="navbarMenuHeroA">
<span></span>
<span></span>
<span></span>
</span>
</div>
<div id="navbarMenuHeroA" class="navbar-menu">
<div class="navbar-end">
<a href="index.html" class="navbar-item">
Home
</a>
<div class="navbar-item has-dropdown is-hoverable">
<a href="document.html" class="navbar-link">
Documentation
</a>
<div class="navbar-dropdown">
<a href="document.html" class="navbar-item">
Extra diagrams
</a>
<a href="docs/Requirements_Doc_NEW.pdf" class="navbar-item">
Requirements
</a>
<a href="docs/Architecture.pdf" class="navbar-item">
Architecture
</a>
<a href="docs/Method_selection_and_planning.pdf" class="navbar-item">
Method Selection and Planning
</a>
<a href="docs/Risk_assessment_and_mitigation.pdf" class="navbar-item">
Risk Assesment and Mitigation
</a>
<a href="docs/Implementation.pdf" class="navbar-item">
Implementation
</a>
<a href="javadoc/index.html" class="navbar-item">
Javadoc
</a>
</div>
</div>
<span class="navbar-item">
<!-- Set as primary so we can customise the colour scheme later with sass -->
<a href="piazzaPanic.jar" class="button is-link">
<span>Download</span>
</a>
</span>
</div>
</div>
</div>
</nav>
</div>
<!-- Hero content: will be in the middle -->
<div class="hero-body">
<div class="container is-widescreen">
<div class="columns">
<div class="column is-three-fifths">
<p id="main-title" class="title">
<strong>Piazza Panic</strong>
</p>
<p class="subtitle">
<!-- This is placeholder text, use this to generate more: https://www.lipsum.com/ -->
Our submission for the ENG1 Assesment 1 is here!
<br>
<br>
Our contact emails:
<div class="content">
<ul>
<li>Ross Holmes (roh518) </li>
<li>Sabid Hossain (msh536)</li>
<li>Thomas Pauline (tp1025)</li>
<li>Joel Paxman (jp2049)</li>
<li>Andrey Samoilov (as3749) </li>
<li>Louis Warren (lw2379) </li>
</ul>
</div>
</p>
</div>
<div class="column">
<figure class="image is-5by3">
<img src="images/gameScreenshot.png">
</figure>
</div>
</div>
</div>
</div>
<!-- Hero footer: will stick at the bottom -->
<div class="hero-foot">
<nav class="tabs">
<div class="container">
<ul>
<li><a href="licence.html">Licenses & Attribution</a></li>
<li><a href="snapshots.html">Weekly snapshots</a></li>
<li><a href="https://github.com/dislocated-su/ENG1">Github</a></li>
</ul>
</div>
</nav>
</div>
</section>
</body>
<script>
document.addEventListener('DOMContentLoaded', () => {
// Get all "navbar-burger" elements
const $navbarBurgers = Array.prototype.slice.call(document.querySelectorAll('.navbar-burger'), 0);
// Add a click event on each of them
$navbarBurgers.forEach(el => {
el.addEventListener('click', () => {
// Get the target from the "data-target" attribute
const target = el.dataset.target;
const $target = document.getElementById(target);
// Toggle the "is-active" class on both the "navbar-burger" and the "navbar-menu"
el.classList.toggle('is-active');
$target.classList.toggle('is-active');
});
});
});
</script>