application.html.erb
1.01 KB
<!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">
<%= image_tag "dogs2-white.svg", height: "70" %>
<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 © 2016 Weird Web Workers and Georg Hopp | All rights reserved
</footer>
</div>
</body>
</html>
<!-- vim: set ts=2 sw=2: -->