application.html.erb
1.99 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
<!DOCTYPE html>
<html>
<head>
<title>Georg Hopp aka Steffers</title>
<%= stylesheet_link_tag 'application',
media: 'all', 'data-turbolinks-track' => true %>
<%= csrf_meta_tags %>
</head>
<body>
<header id="header">
<div id="logo">
<%= image_tag "me-white.png", width: "62", height: "70" %>
<div class="logotitle">
<a href=""> Georg Hopp </a>
<span>aka Steffers</span>
</div>
</div>
<nav id="nav">
<ul>
<li><a href="#section1" class="active" title="Next Section" >
About me</a></li>
<li><a href="#section2" title="Next Section">Skills</a></li>
<li><a href="#section3" title="Next Section">Vitae</a></li>
<li><a href="#section4" title="Next Section">Links</a></li>
</ul>
</nav>
</header>
<%= 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 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">
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">
Creative Commons Attribution 4.0 International License
</a>.
</p>
</div>
<a href="http://creativecommons.org/licenses/by/4.0/" rel="license">
<img alt="Creative Commons License"
style="border-width:0"
width="88"
height="31"
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">
<%= image_tag("gpl-v3-red.png", height: "31", width: "62") %>
</a>
</div>
</footer>
<%= javascript_include_tag 'application',
'data-turbolinks-track' => true %>
</body>
</html>
<!-- vim: set ts=2 sw=2: -->