m-chrzan.xyz
aboutsummaryrefslogtreecommitdiff
path: root/src/template.html.erb
blob: 03d267687a5c133709507c6dd649628ff8045828 (plain)
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
<!DOCTYPE html>
<html lang=en>
<head>
  <title><%= head_title %></title>
  <link rel='stylesheet' type='text/css' href='<%= path_to 'style' %>'>
  <meta charset='utf-8'>
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<h1><%= h1_title %></h1>

<hr />

<ul class='links'>
  <li><a href='<%= path_to 'index' %>'>Home</a></li>
  <li><a href='<%= path_to 'blog' %>'>Blog</a></li>
  <li><a href='<%= path_to 'projects' %>'>Projects</a></li>
  <li><a href='<%= path_to 'sunday' %>'>Sunday Corner</a></li>
</ul>

<hr />

<%= content -%>

</body>
</html>