mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 21:16:08 +08:00
29 lines
857 B
Plaintext
29 lines
857 B
Plaintext
<!DOCTYPE html>
|
|
<html lang="<%= SiteSetting.default_locale %>">
|
|
<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? %>
|
|
<%= raw SiteCustomization.custom_head_tag(session[:preview_style]) %>
|
|
<%- end %>
|
|
<%= yield(:no_ember_head) %>
|
|
</head>
|
|
<body>
|
|
<%- unless customization_disabled? %>
|
|
<%= SiteCustomization.custom_header(session[:preview_style]) %>
|
|
<%- end %>
|
|
<section id='main'>
|
|
<%= render partial: 'header' %>
|
|
<div id="main-outlet" class="<%= @container_class ? @container_class : 'container' %>">
|
|
<%= yield %>
|
|
</div>
|
|
</section>
|
|
</body>
|
|
</html>
|