mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 23:54:16 +08:00
15 lines
398 B
Plaintext
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>
|