discourse/app/views/layouts/publish.html.erb

15 lines
398 B
Plaintext

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title><%= @topic.title %> - <%= SiteSetting.title %></title>
<%= 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>