-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
executable file
·152 lines (152 loc) · 6.27 KB
/
index.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
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
151
152
<? get_header();
/*
* Template Name: Home Page
**/
?>
<!-- CONTENT -->
<div id="content" class="container wrapper">
<!-- SPLASH IMAGE -->
<div class="splash row">
<div class="col-md-12">
<div id="splash">
<span id="credit">Pictured: Dylan Thrush, Billy Edwards, OSU President Ed Ray, Nick McComb, Matthew Shuman</span>
</div>
</div>
</div>
<!-- END SPLASH IMAGE -->
<!-- PAGE TITLE -->
<div class="row">
<div class="header col-md-12">
<span class="welcome">Welcome</span>
<span class="to"> to the OSU Robotics Club Website!</span>
</div>
</div>
<!-- END PAGE TITLE -->
<!-- POSTS -->
<div class="row">
<div class="posts col-md-12">
<?
/* Add each post */
while ( have_posts() ) : the_post();
/* nclude the page content template */
the_content();
/* If comments are open or we have at least one comment load up the comment template */
if ( comments_open() || get_comments_number() ) {
comments_template();
}
endwhile;
?>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="widget-area">
<?php dynamic_sidebar( 'sidebar-1' ); ?>
</div><!-- .widget-area -->
</div>
</div>
<!-- END POSTS -->
<!-- FEATURED PROJECTS BANNER -->
<div class="row">
<div class="col-md-12">
<h1 class="banner">Featured Projects</h1>
</div>
</div>
<!-- END FEATURED PROJECTS BANNER -->
<section id="projects" class="wrapper">
<!-- PROJECTS IMAGES -->
<div class="images row">
<div class="aerial image col-md-4">
<a href="<? echo esc_url( home_url( '/' ) ); ?>aerial"></a>
</div>
<div class="rover image col-md-4">
<a href="<? echo esc_url( home_url( '/' ) ); ?>rover"></a>
</div>
<div class="underwater image col-md-4">
<a href="<? echo esc_url( home_url( '/' ) ); ?>underwater"></a>
</div>
</div>
<!-- END PROJECTS IMAGES -->
<!-- PROJECTS BLURBS -->
<div class="blurbs row">
<div class="col-md-4">
<span class="lquote">“</span>
The OSU Robotics Club Aerial Team is focused on building custom, autonomous UAV’s.
Currently the club has designed indoor and outdoor UAV’s with high payload capacities,
full autonomy, and long battery life. The team works towards furthering the understanding
of aerial vehicle technologies <span class="ellipsis">[ . . . ]</span> <span class="rquote">”</span>
</div>
<div class="col-md-4">
<span class="lquote">“</span>
The OSU Mars Rover Team is a distinguished robotics team within the OSURC that creates
Mars Rover-like robots to compete in international robotics competitions, namely NASA’s
Sample Return Robot Challenge and the Mars Society’s University Rover Challenge
<span class="ellipsis">[ . . . ]</span> <span class="rquote">”</span>
</div>
<div class="col-md-4">
<span class="lquote">“</span>
The OSURC Underwater Team is engineering for the 2015-16 MATE competition. The team will
build a small, tethered ROV that can be used to solve today’s problems in the Ocean:
re-fitting undersea cable, repair broken oil wellheads, retrieving Cube Satellites, and
surveying <span class="ellipsis">[ . . . ]</span> <span class="rquote">”</span>
</div>
</div>
<!-- END PROJECTS BLURBS -->
<!-- PROJECTS LINKS -->
<div class="links row">
<div class="col-md-4">
<a href="<? echo esc_url( home_url( '/' ) ); ?>aerial">Visit here for more.</a>
</div>
<div class="col-md-4">
<a href="<? echo esc_url( home_url( '/' ) ); ?>rover">Visit here for more.</a>
</div>
<div class="col-md-4">
<a href="<? echo esc_url( home_url( '/' ) ); ?>underwater">Visit here for more.</a>
</div>
</div>
<!-- END PROJECTS LINKS -->
</section>
<!-- END PROJECTS -->
<!-- OFFICERS
<div id="meet-the-leaders">
<div class="row">
<div class="col-md-12">
<h1 class="banner">Meet the Leaders</h1>
</div>
</div>
<div class="row">
<div class="col-md-12">
<ul>
<li>
<p><img src="http://osurobotics.club/wp-content/uploads/2015/12/Nick-150x150.jpg"></p>
<p><a href="mailto:[email protected]">Nick McComb</a></p>
<p>President</p>
</li>
<li>
<p><img src="http://osurobotics.club/wp-content/uploads/2015/12/Dylan-150x150.jpg"></p>
<p><a href="mailto:[email protected]">Dylan Thrush</a></p>
<p>Vice-President</p>
</li>
<li>
<img src="http://osurobotics.club/wp-content/uploads/2015/12/Corwin-150x150.jpg"></p>
<p><a href="mailto:[email protected]">Corwin Perren</a></p>
<p>Treasurer</p>
</li>
<li>
<p><img src="http://osurobotics.club/wp-content/uploads/2015/12/Billy-150x150.jpg"></p>
<p><a href="mailto:[email protected]">Billy Edwards</a></p>
<p>Secretary</p>
</li>
</ul>
</div>
</div>
</div>
<!-- END OFFICERS -->
<!-- END INDEX -->
</div>
<!-- END CONTENT -->
<? get_footer();
/*
* Template Name: Home Page
**/
?>