-
Notifications
You must be signed in to change notification settings - Fork 0
/
gallery.php
95 lines (84 loc) · 2.47 KB
/
gallery.php
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
<?php
//Include the main page
include("rec/main.php");
//Set the page title
$title = "Ligerbots Gallery";
//Load the header
include("rec/header.php");
?>
<div class="gnav">
<a href="#build" class="navlink">Build</a>
<a href="#wpi" class="navlink">WPI</a>
<a href="#northeastern" class="navlink">Northeastern</a>
<a href="#worlds" class="navlink">World Championships</a>
<a href="#wholefoods" class="navlink">WholeFoods</a>
</div>
<h1>2014 Photos</h1>
<h2><a name="build">Build Season</a></h2>
<center>
<img src="/img/photos_20140927/20140124200150.jpg">
<br>
<img src="/img/photos_20140927/20140124200357.jpg">
<br>
<img src="/img/photos_20140927/img_0001-copy.jpg">
<br>
<img src="/img/photos_20140927/img_0027.jpg">
<br>
<img src="/img/photos_20140927/stb_0002.jpg">
</center>
<h2><a name="wpi">WPI District Competition</a></h2>
<center>
<img src="/img/photos_20140927/20140314131323.jpg">
<br>
<img src="/img/photos_20140927/20140314134958.jpg">
<br>
<img src="/img/photos_20140927/20140314164526.jpg">
<br>
<img src="/img/photos_20140927/20140314165036.jpg">
</center>
<h2><a name="northeastern">Northeastern District Competition</a></h2>
<center>
<img src="/img/photos_20140927/20140329160152.jpg">
<br>
<img src="/img/photos_20140927/20140329173123.jpg">
</center>
<h2><a name="worlds">World Championships</a></h2>
<center>
<img src="/img/photos_20140927/20140423192602.jpg">
<img src="/img/photos_20140927/20140423192716.jpg">
<br>
<img src="/img/photos_20140927/20140423194110.jpg">
<br>
<img src="/img/photos_20140927/20140423195657.jpg">
<br>
<img src="/img/photos_20140927/20140423202219.jpg">
<br>
<img src="/img/photos_20140927/20140423202404.jpg">
<br>
<img src="/img/photos_20140927/20140423202515.jpg">
<br>
<img src="/img/photos_20140927/20140424112925.jpg">
<img src="/img/photos_20140927/20140424130831.jpg">
<br>
<img src="/img/photos_20140927/20140424162748.jpg">
<br>
<img src="/img/photos_20140927/20140424165204.jpg">
<br>
<img src="/img/photos_20140927/20140426122748.jpg">
<br>
<img src="https://lh5.googleusercontent.com/-A-eJpBvTRbA/U2qnZa5RhtI/AAAAAAAABLc/tKo7j-jBY4Q/s1024/20140426_095340_Android.jpg">
</center>
<h2><a name="wholefoods">WholeFoods Fundraiser</a></h2>
<center>
<img src="/img/photos_20140927/IMG_1826.jpg">
<br>
<img src="/img/photos_20140927/IMG_1829.jpg">
<br>
<img src="/img/photos_20140927/IMG_1850.jpg">
<br>
<img src="/img/photos_20140927/IMG_1885.jpg">
</center>
<?php
//Include the footer
include("rec/footer.php");
?>