durfdoen-2.0/layouts/default.erb

15 lines
387 B
Text
Raw Normal View History

2020-02-27 16:55:36 +01:00
<html>
<head>
2020-03-19 23:01:10 +01:00
<meta charset="UTF-8">
<title> Durf Doen! - <%= item[:titel] || abbreviation(item) %> </title>
2020-03-19 23:01:10 +01:00
2020-02-27 16:55:36 +01:00
<link rel="stylesheet" href="/stylesheets/main.css">
<link rel="shortcut icon" href="/assets/favicon.png">
2020-02-27 21:29:00 +01:00
<%= item[:head] %>
2020-02-27 16:55:36 +01:00
</head>
<body>
<%= render '/partials/navbar.*' %>
<%= yield %>
</body>
2020-02-27 20:25:33 +01:00
</html>