application.html.erb 966 Bytes
<!DOCTYPE html>
<html>
	<head>
		<title>Weird Web Workers</title>
		<%= stylesheet_link_tag    'application', media: 'all', 'data-turbolinks-track' => true %>
		<%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
		<%= csrf_meta_tags %>
	</head>
	<body>
		<header id="header">
			<div class="header-content">
				<div id="logo"><a href=""> WEIRD WEB WORKERS </a></div>
				<nav id="nav">
					<ul>
						<li><a href="#section1" class="active" title="Next Section" >About</a></li>
						<li><a href="#section2" title="Next Section">Projects</a></li>
						<li><a href="#section3" title="Next Section">Slide 3</a></li>
						<li><a href="#section4" title="Next Section">Slide 4</a></li>
					</ul>
				</nav>
			</div>
		</header>

		<div id="content">
			<%= yield %>

			<footer id="footer">
				Copyright &copy; 2016 Weird Web Workers and Georg Hopp | All rights reserved
			</footer>
		</div>
	</body>
</html>
<!-- vim: set ts=2 sw=2: -->