Allow for extra head content

This commit is contained in:
rbmaerte 2020-02-27 20:25:33 +01:00 committed by GitHub Enterprise
parent 84ad66683a
commit 080ef404fb

View file

@ -3,9 +3,10 @@
<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">
<%= raw item[:head] %>
</head> </head>
<body> <body>
<%= render '/partials/navbar.*' %> <%= render '/partials/navbar.*' %>
<%= yield %> <%= yield %>
</body> </body>
</html> </html>