application.html.erb 2 KB
<!DOCTYPE html>
<html>
	<head>
		<title>Georg Hopp aka Steffers</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 "me-white.svg", height: "70" %>
					<a href=""> Georg Hopp aka Steffers </a>
				</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>
			</div>
		</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"
						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>
	</body>
</html>
<!-- vim: set ts=2 sw=2: -->