2013-01-31 21:00:44 +01:00

47 lines
1.1 KiB
Plaintext

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<!-- Always force latest IE rendering engine or request Chrome Frame -->
<meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible">
<!-- Use title if it's in the page YAML frontmatter -->
<title><%= data.page.title || "Home" %> | Guillaume DOTT</title>
<%= stylesheet_link_tag "normalize", "all" %>
<%= javascript_include_tag "all" %>
<%= favicon_tag 'favicon.png' %>
</head>
<body class="<%= page_classes %>">
<ul id="lang">
<li><%= link_to I18n.t(:french), "/fr/" %></li>
<li><%= link_to I18n.t(:english), "/" %></li>
</ul>
<header>
<div>
<h1>Guillaume DOTT</h1>
<h2><%= I18n.t(:developer) %></h2>
</div>
<div id="download_cv">
<div id="icon">
<a href="/files/CV_Guillaume_DOTT.pdf">
<%= image_tag 'pdf.png' %>
</a>
</div>
<p>
<a href="/files/CV_Guillaume_DOTT.pdf">
<%= I18n.t(:download_resume) %><br />
</a>
</p>
</div>
</header>
<section>
<%= yield %>
</section>
</body>
</html>