2013-01-30 00:00:28 +01:00
|
|
|
<!doctype html>
|
|
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<meta charset="utf-8">
|
2013-01-30 00:34:05 +01:00
|
|
|
|
2013-01-30 00:00:28 +01:00
|
|
|
<!-- Always force latest IE rendering engine or request Chrome Frame -->
|
|
|
|
|
<meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible">
|
2013-01-30 00:34:05 +01:00
|
|
|
|
2013-01-30 00:00:28 +01:00
|
|
|
<!-- Use title if it's in the page YAML frontmatter -->
|
2013-01-30 00:34:05 +01:00
|
|
|
<title><%= data.page.title || "Home" %> | Guillaume DOTT</title>
|
|
|
|
|
|
2013-01-30 00:00:28 +01:00
|
|
|
<%= stylesheet_link_tag "normalize", "all" %>
|
|
|
|
|
<%= javascript_include_tag "all" %>
|
2013-01-30 00:34:05 +01:00
|
|
|
<%= favicon_tag 'favicon.png' %>
|
2013-01-30 00:00:28 +01:00
|
|
|
</head>
|
2013-01-30 00:34:05 +01:00
|
|
|
|
2013-01-30 00:00:28 +01:00
|
|
|
<body class="<%= page_classes %>">
|
2013-01-30 13:50:31 +01:00
|
|
|
<ul id="lang">
|
|
|
|
|
<li><%= link_to I18n.t(:french), "/fr/" %></li>
|
|
|
|
|
<li><%= link_to I18n.t(:english), "/" %></li>
|
|
|
|
|
</ul>
|
|
|
|
|
|
2013-01-30 00:34:05 +01:00
|
|
|
<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>
|
2013-01-30 00:00:28 +01:00
|
|
|
<%= yield %>
|
|
|
|
|
</body>
|
2013-01-30 00:34:05 +01:00
|
|
|
</html>
|