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