summaryrefslogtreecommitdiff
path: root/lib/template.erb
blob: 61d605d9057c6d12782cb51fa17533f56e37a1a8 (plain)
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
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <!-- the meta tags must come first -->

    <title><%= @title %></title>

    <link href="/style.css" rel="stylesheet">
    <%= @head %>
  </head>
  <body>
    <header>
      <h1>
	<img src="/logos/brass-bull.png"/>
	<img src="/header-path.svg" alt="4272 Maverick Boiler Robotics"/>
      </h1>
      <nav>
	<ul>
	  <li><a href="/">Home</a></li>
	  <li><a href="javascript:">Collaboration Tools</a>
	    <ul>
	      <li><a href="https://git.team4272.com/">Git</a></li>
	      <li><a href="https://owncloud.team4272.com/">ownCloud</a></li>
	      <li><a href="https://ethercalc.team4272.com/">EtherCalc</a></li>
	    </ul>
	  </li>
	  <li><a href="javascript:">Safety</a>
	    <ul>
	      <li><a href="/safety">Safety App</a></li>
	      <li><a href="https://scratch.mit.edu/projects/142356798/">Safety Game</a></li>
	    </ul>
	  </li>
	  <li><a href="https://facebook.com/MBR4272">Facebook</a></li>
	  <li><a href="https://twitter.com/Team4272">Twitter</a></li>
	</ul>
      </nav>
    </header>
    <article>
      <%= @body %>
    </article>
    <footer>
      <div>
	<h3>Sponsors</h3>
	<ul>
	  <li><a href="http://mhs.tsc.k12.in.us/">McCutcheon High School</a></li>
	  <li><a href="http://www.purduefirst.org/">Purdue FIRST Program</a></li>
	  <li><a href="http://cfglaf.org/">Community Foundation of greater Lafayette</a></li>
	</ul>
      </div>
      <div>
	<h3>About</h3>
	<a href="https://git.team4272.com/www.git">Website Source Code</a>
      </div>
    </footer>
  </body>
</html>