2013-02-06 03:16:51 +08:00
|
|
|
<!DOCTYPE html>
|
2018-08-20 19:55:58 +08:00
|
|
|
<html lang="<%= html_lang %>">
|
2015-01-16 04:29:37 +08:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
2017-06-13 01:50:30 +08:00
|
|
|
<title><%= content_for?(:title) ? yield(:title) : SiteSetting.title %></title>
|
2015-01-16 04:29:37 +08:00
|
|
|
<meta name="description" content="">
|
|
|
|
<%= render partial: "layouts/head" %>
|
|
|
|
<%= render partial: "common/discourse_stylesheet" %>
|
|
|
|
<%= discourse_csrf_tags %>
|
|
|
|
|
2017-04-12 22:52:52 +08:00
|
|
|
<%= theme_lookup("head_tag") %>
|
2015-01-16 04:56:53 +08:00
|
|
|
<%= yield(:no_ember_head) %>
|
2017-11-15 05:31:44 +08:00
|
|
|
<%= build_plugin_html 'server:before-head-close' %>
|
2015-01-16 04:29:37 +08:00
|
|
|
</head>
|
2016-05-06 02:37:09 +08:00
|
|
|
<body <% if @custom_body_class %>class="<%= @custom_body_class %>"<% end %>>
|
2017-04-12 22:52:52 +08:00
|
|
|
<%= theme_lookup("header") %>
|
2017-11-15 05:31:44 +08:00
|
|
|
<%= build_plugin_html 'server:header' %>
|
2015-02-26 00:35:47 +08:00
|
|
|
<section id='main'>
|
2019-08-08 20:57:18 +08:00
|
|
|
<%= render partial: 'header', locals: { hide_auth_buttons: local_assigns[:hide_auth_buttons] } %>
|
2015-07-28 16:02:39 +08:00
|
|
|
<div id="main-outlet" class="<%= @container_class ? @container_class : 'wrap' %>">
|
2015-02-26 00:35:47 +08:00
|
|
|
<%= yield %>
|
2015-01-15 17:31:30 +08:00
|
|
|
</div>
|
2015-02-26 00:35:47 +08:00
|
|
|
</section>
|
2017-04-12 22:52:52 +08:00
|
|
|
<%= theme_lookup("footer") %>
|
2019-07-31 01:00:46 +08:00
|
|
|
<%= theme_lookup("body_tag") %>
|
2017-11-15 05:31:44 +08:00
|
|
|
<%= build_plugin_html 'no-client:footer' %>
|
|
|
|
<%= build_plugin_html 'server:before-body-close' %>
|
2015-01-16 04:29:37 +08:00
|
|
|
</body>
|
2013-02-06 03:16:51 +08:00
|
|
|
</html>
|