durfdoen-2.0/layouts/base.erb

20 lines
447 B
Plaintext
Raw Normal View History

2020-08-28 20:14:28 +00:00
<!DOCTYPE html>
<html lang="nl">
<head>
2020-09-09 19:54:22 +00:00
<meta charset="utf-8">
2020-08-28 20:14:28 +00:00
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title> Durf Doen! - <%= item[:naam] || abbreviation(item) %> </title>
2020-08-28 20:14:28 +00:00
<link rel="stylesheet" href="/stylesheets/main.css">
<link rel="shortcut icon" href="/assets/favicon.png">
2020-09-09 19:54:22 +00:00
2020-09-06 18:41:54 +00:00
<%= item[:head] %>
2020-08-28 20:14:28 +00:00
</head>
<body>
<%= yield %>
</body>
</html>