14 lines
332 B
Plaintext
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>
|