summaryrefslogtreecommitdiff
path: root/lib/template.erb
blob: 9ae8d5de3bbff49b697c1980c1b686eba8dd8284 (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
<!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>
      <%= @footer %>
    </footer>
  </body>
</html>