blob: 4d7a28bdabca435f89b15b080fcc4cbd9eaaf358 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!DOCTYPE html>
<html lang=en>
<head>
<title>Tuturutu<%= title ? " | #{title}" : "" %></title>
<meta charset='utf-8'>
<link rel='stylesheet' type='text/css' href='<%= path_to 'style' %>'>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<%- if title -%>
<a href='<%= path_to 'index' %>'>← strona główna</a>
<%- end -%>
<%= content -%>
</body>
</html>
|