You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
2.1 KiB
76 lines
2.1 KiB
<!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">Custom Code</a></li>
|
|
<li><a href="#section3" title="Next Section">Etymology</a></li>
|
|
<li><a href="#section4" title="Next Section">Freedom</a></li>
|
|
</ul>
|
|
</nav>
|
|
</div>
|
|
</header>
|
|
|
|
<div id="content">
|
|
<%= yield %>
|
|
|
|
<footer id="footer">
|
|
<ul>
|
|
<li><a href="">about us</a></li>
|
|
<li><a href="">contact</a></li>
|
|
</ul>
|
|
<div class="license">
|
|
<div>
|
|
<p>
|
|
Copyright © 2016 Weird Web Workers and Georg Hopp | All
|
|
rights reserved
|
|
</p>
|
|
<p>
|
|
All code (no matter which language) used to create this page is
|
|
licensed under a
|
|
<a href="http://www.gnu.org/licenses/gpl-3.0.en.html"
|
|
rel="license"
|
|
target="_blank">
|
|
GNU General Public License (Version 3)
|
|
</a>.
|
|
</p>
|
|
<p>
|
|
All other work is licensed under a
|
|
<a href="http://creativecommons.org/licenses/by/4.0/"
|
|
rel="license"
|
|
target="_blank">
|
|
Creative Commons Attribution 4.0 International License
|
|
</a>.
|
|
</p>
|
|
</div>
|
|
<a href="http://creativecommons.org/licenses/by/4.0/"
|
|
rel="license"
|
|
target="_blank">
|
|
<img alt="Creative Commons License"
|
|
style="border-width:0"
|
|
src="https://i.creativecommons.org/l/by/4.0/88x31.png" />
|
|
</a>
|
|
<a href="http://www.gnu.org/licenses/gpl-3.0.en.html"
|
|
rel="license"
|
|
target="_blank">
|
|
<%= image_tag("gpl-v3-red.svg", height: "30") %>
|
|
</a>
|
|
</div>
|
|
</footer>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
<!-- vim: set ts=2 sw=2: -->
|