-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.php
More file actions
57 lines (50 loc) · 1.48 KB
/
Copy pathabout.php
File metadata and controls
57 lines (50 loc) · 1.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<?php include('includes/globalHead.html'); ?>
<title>Discussion Board — About</title>
<script>
$(document).ready(function() {
$('.ui.embed').embed({
source : 'youtube',
id : '752tGFuihzM',
placeholder : 'src/img/videoPlaceholder.jpg'
});
});
</script>
</head>
<body>
<?php
include('includes/menu.php');
drawMenu("about");
?>
<div id="mainContainer">
<div class="ui vertical segment">
<h2 class="ui header">
<i class="photo icon"></i>
<div class="content">
Photos
</div>
</h2>
<h4>Look at some of these interesting things</h4>
<div class="ui medium images">
<img class="ui bordered image" src="src/img/img1.jpg">
<img class="ui bordered image" src="src/img/img2.jpg">
<img class="ui bordered image" src="src/img/img3.jpg">
<img class="ui bordered image" src="src/img/img4.jpg">
</div>
</div>
<div class="ui vertical segment">
<h2 class="ui header">
<i class="film icon"></i>
<div class="content">
Multimedia
</div>
</h2>
<h4>A representation of trying to finish this project on time</h4>
<div class="ui embed"></div>
</div>
</div>
<?php //include('includes/footer.html'); ?>
</body>
</html>