2013-02-05 14:16:51 -05:00
|
|
|
<!DOCTYPE html>
|
2013-07-04 14:32:16 -04:00
|
|
|
<html lang="<%= SiteSetting.default_locale %>">
|
2015-01-15 15:29:37 -05:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
2017-06-12 13:50:30 -04:00
|
|
|
<title><%= content_for?(:title) ? yield(:title) : SiteSetting.title %></title>
|
2015-01-15 15:29:37 -05:00
|
|
|
<meta name="description" content="">
|
|
|
|
<%= render partial: "layouts/head" %>
|
|
|
|
<%= render partial: "common/special_font_face" %>
|
|
|
|
<%= render partial: "common/discourse_stylesheet" %>
|
|
|
|
<%= discourse_csrf_tags %>
|
|
|
|
|
2017-04-12 10:52:52 -04:00
|
|
|
<%= theme_lookup("head_tag") %>
|
2015-01-15 15:56:53 -05:00
|
|
|
<%= yield(:no_ember_head) %>
|
2017-11-14 16:31:44 -05:00
|
|
|
<%= build_plugin_html 'server:before-head-close' %>
|
2015-01-15 15:29:37 -05:00
|
|
|
</head>
|
2016-05-05 14:37:09 -04:00
|
|
|
<body <% if @custom_body_class %>class="<%= @custom_body_class %>"<% end %>>
|
2017-04-12 10:52:52 -04:00
|
|
|
<%= theme_lookup("header") %>
|
2017-11-14 16:31:44 -05:00
|
|
|
<%= build_plugin_html 'server:header' %>
|
2015-02-25 11:35:47 -05:00
|
|
|
<section id='main'>
|
|
|
|
<%= render partial: 'header' %>
|
2015-07-28 04:02:39 -04:00
|
|
|
<div id="main-outlet" class="<%= @container_class ? @container_class : 'wrap' %>">
|
2015-02-25 11:35:47 -05:00
|
|
|
<%= yield %>
|
2015-01-15 04:31:30 -05:00
|
|
|
</div>
|
2015-02-25 11:35:47 -05:00
|
|
|
</section>
|
2017-04-12 10:52:52 -04:00
|
|
|
<%= theme_lookup("footer") %>
|
2017-11-14 16:31:44 -05:00
|
|
|
<%= build_plugin_html 'no-client:footer' %>
|
|
|
|
<%= build_plugin_html 'server:before-body-close' %>
|
2015-01-15 15:29:37 -05:00
|
|
|
</body>
|
2013-02-05 14:16:51 -05:00
|
|
|
</html>
|