-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
executable file
·38 lines (38 loc) · 1.92 KB
/
footer.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
<footer>
<div class="container wrapper">
<div class="row">
<div class="col-md-4">
<h3>Navigation</h3>
<div class="row">
<ul class="col-md-6">
<li><a href="<? echo esc_url( home_url( '/' ) ); ?>/index">Home</a></li>
<li><a href="<? echo esc_url( home_url( '/' ) ); ?>/about">About</a></li>
<li><a href="<? echo esc_url( home_url( '/' ) ); ?>/projects">Projects</a></li>
<li><a href="<? echo esc_url( home_url( '/' ) ); ?>/competitions">Competitions</a></li>
</ul>
<ul class="col-md-6">
<li><a href="<? echo esc_url( home_url( '/' ) ); ?>/rover">Mars Rover</a></li>
<li><a href="<? echo esc_url( home_url( '/' ) ); ?>/aerial">Autonomous Aerial</a></li>
<li><a href="<? echo esc_url( home_url( '/' ) ); ?>/underwater">Underwater ROV</a></li>
<li><a href="<? echo esc_url( home_url( '/' ) ); ?>/contact">Contact</a></li>
</ul>
</div>
</div>
<div class="col-md-4">
<h3>Join the Club!</h3>
<p>If you would like to join our mailing list, go <a href="https://secure.engr.oregonstate.edu/mailman/listinfo/osurcmembers">here.</a></p>
</div>
<div class="col-md-4">
<h3>Meeting Dates</h3>
<p>General club meeting is typically the first week of each term. Check
<a href="<? echo esc_url( home_url( '/' ) ); ?>/projects">project pages</a> for
team meeting times.</p>
<p>For more information, visit our <a href="<? echo esc_url( home_url( '/' ) ); ?>/calendar">Calendar.</a></p>
</div>
</div>
</div>
</footer>
</div>
<!-- END MAIN CONTAINER -->
</body>
</html>