application.html.erb
2.1 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!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: -->