2013-02-05 13:16:51 -06:00
|
|
|
<!DOCTYPE html>
|
2013-07-04 13:32:16 -05:00
|
|
|
<html lang="<%= SiteSetting.default_locale %>">
|
2015-01-15 14:29:37 -06:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
2017-01-31 14:42:12 -06:00
|
|
|
<title><%= content_for?(:title) ? yield(:title) + ' - ' + SiteSetting.title : SiteSetting.title %></title>
|
2015-01-15 14:29:37 -06: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 09:52:52 -05:00
|
|
|
<%= theme_lookup("head_tag") %>
|
2015-01-15 14:56:53 -06:00
|
|
|
<%= yield(:no_ember_head) %>
|
2015-01-15 14:29:37 -06:00
|
|
|
</head>
|
2016-05-05 13:37:09 -05:00
|
|
|
<body <% if @custom_body_class %>class="<%= @custom_body_class %>"<% end %>>
|
2017-04-12 09:52:52 -05:00
|
|
|
<%= theme_lookup("header") %>
|
2015-02-25 10:35:47 -06:00
|
|
|
<section id='main'>
|
|
|
|
<%= render partial: 'header' %>
|
2015-07-28 03:02:39 -05:00
|
|
|
<div id="main-outlet" class="<%= @container_class ? @container_class : 'wrap' %>">
|
2015-02-25 10:35:47 -06:00
|
|
|
<%= yield %>
|
2015-01-15 03:31:30 -06:00
|
|
|
</div>
|
2015-02-25 10:35:47 -06:00
|
|
|
</section>
|
2017-04-12 09:52:52 -05:00
|
|
|
<%= theme_lookup("footer") %>
|
2015-01-15 14:29:37 -06:00
|
|
|
</body>
|
2013-02-05 13:16:51 -06:00
|
|
|
</html>
|