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

30 lines
1.0 KiB
Plaintext
Raw Normal View History

2013-02-05 14:16:51 -05:00
<!DOCTYPE html>
<html lang="<%= SiteSetting.default_locale %>">
2015-01-15 15:29:37 -05:00
<head>
<meta charset="utf-8">
<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 %>
<%= theme_lookup("head_tag") %>
<%= yield(:no_ember_head) %>
<%= raw build_plugin_html 'server:before-head-close' %>
2015-01-15 15:29:37 -05:00
</head>
<body <% if @custom_body_class %>class="<%= @custom_body_class %>"<% end %>>
<%= theme_lookup("header") %>
<%= raw build_plugin_html 'server:header' %>
<section id='main'>
<%= render partial: 'header' %>
2015-07-28 04:02:39 -04:00
<div id="main-outlet" class="<%= @container_class ? @container_class : 'wrap' %>">
<%= yield %>
2015-01-15 04:31:30 -05:00
</div>
</section>
<%= theme_lookup("footer") %>
<%= raw build_plugin_html 'no-client:footer' %>
<%= raw 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>