fix charset in default.erb
This commit is contained in:
parent
2e08734467
commit
5b8f20f723
1 changed files with 11 additions and 10 deletions
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue