application.html.erb 1.99 KB
<!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 &copy; 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: -->