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">
|
|
|
|
<title><%=SiteSetting.title%></title>
|
|
|
|
<meta name="description" content="">
|
|
|
|
<%= render partial: "layouts/head" %>
|
|
|
|
<%= render partial: "common/special_font_face" %>
|
|
|
|
<%= render partial: "common/discourse_stylesheet" %>
|
|
|
|
<%= discourse_csrf_tags %>
|
|
|
|
|
|
|
|
<%- unless customization_disabled? %>
|
2015-01-14 05:52:42 -05:00
|
|
|
<%= raw SiteCustomization.custom_head_tag(session[:preview_style]) %>
|
2015-01-15 15:29:37 -05:00
|
|
|
<%- end %>
|
2015-01-15 15:56:53 -05:00
|
|
|
<%= yield(:no_ember_head) %>
|
2015-01-15 15:29:37 -05:00
|
|
|
</head>
|
|
|
|
<body>
|
2015-02-25 11:35:47 -05:00
|
|
|
<%- unless customization_disabled? %>
|
2015-08-05 10:14:26 -04:00
|
|
|
<%= SiteCustomization.custom_header(session[:preview_style], mobile_view? ? :mobile : :desktop) %>
|
2015-02-25 11:35:47 -05:00
|
|
|
<%- end %>
|
|
|
|
<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>
|
2015-08-05 10:14:26 -04:00
|
|
|
<%- unless customization_disabled? %>
|
|
|
|
<%= SiteCustomization.custom_footer(session[:preview_style], mobile_view? ? :mobile : :desktop) %>
|
|
|
|
<%- end %>
|
2015-01-15 15:29:37 -05:00
|
|
|
</body>
|
2013-02-05 14:16:51 -05:00
|
|
|
</html>
|