discourse/app/views/layouts/publish.html.erb
Joffrey JAFFEUX 3e161e372a
FEATURE: allows to have header/footer in publshed pages (#10067)
Usage: fill Header/Footer sections of your theme.
2020-06-19 09:51:03 +02:00

14 lines
332 B
Plaintext

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<%= render partial: "layouts/head" %>
<%= render partial: "common/discourse_publish_stylesheet" %>
</head>
<body class="<%= @body_classes.to_a.join(' ') %>">
<%= theme_lookup("header") %>
<%= yield %>
<%= theme_lookup("footer") %>
</body>
</html>