fix charset in default.erb

This commit is contained in:
ajuvercr 2020-08-28 20:54:26 +02:00
parent 2e08734467
commit 5b8f20f723

View file

@ -1,12 +1,13 @@
<html>
<head>
<title> Durf Doen! - <%= item[:titel] || item.identifier.without_ext.split('/').last %> </title>
<link rel="stylesheet" href="/stylesheets/main.css">
<link rel="shortcut icon" href="/assets/favicon.png">
<%= item[:head] %>
</head>
<body>
<%= render '/partials/navbar.*' %>
<%= yield %>
</body>
<head>
<title> Durf Doen! - <%= item[:titel] || item.identifier.without_ext.split('/').last %> </title>
<link rel="stylesheet" href="/stylesheets/main.css">
<link rel="shortcut icon" href="/assets/favicon.png">
<meta charset="UTF-8">
<%= item[:head] %>
</head>
<body>
<%= render '/partials/navbar.*' %>
<%= yield %>
</body>
</html>