mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 12:03:35 +08:00
70 lines
2.0 KiB
Plaintext
70 lines
2.0 KiB
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title><%=t :title%></title>
|
|
<meta content="width=device-width, initial-scale=1.0" name="viewport">
|
|
<meta content="" name="description">
|
|
<meta content="" name="author">
|
|
|
|
<%= canonical_link_tag %>
|
|
|
|
<link rel="icon" type="image/png" href=<%=SiteSetting.favicon_url%>>
|
|
<%= javascript_include_tag "preload_store" %>
|
|
|
|
|
|
|
|
<%= render :partial => "common/special_font_face" %>
|
|
<%= render :partial => "common/discourse_stylesheet" %>
|
|
|
|
|
|
<%=csrf_meta_tags%>
|
|
|
|
<%= yield :head %>
|
|
</head>
|
|
|
|
<body>
|
|
<%=SiteCustomization.custom_header(session[:preview_style])%>
|
|
<section id='main'>
|
|
<section id='loading-message' style='display:none'><%= t :loading %>...</section>
|
|
<noscript data-path="<%= request.env['PATH_INFO'] %>">
|
|
<header class="d-header">
|
|
<div class="container">
|
|
<div class="contents">
|
|
<div class="row">
|
|
<div class="title span13">
|
|
<a href="/"><img src="<%=SiteSetting.logo_url%>" alt="<%=SiteSetting.title%>" id="site-logo"></a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
<div id="main-outlet" class="container">
|
|
<!-- preload-content: -->
|
|
<%= yield %>
|
|
<!-- :preload-content -->
|
|
</div>
|
|
</noscript>
|
|
</section>
|
|
|
|
<%- if @preloaded.present? %>
|
|
<script>
|
|
<%- @preloaded.each do |key, json| %>
|
|
PreloadStore.store("<%= key %>", <%= raw json %>)
|
|
<% end %>
|
|
</script>
|
|
<%- end %>
|
|
|
|
<%= yield :data %>
|
|
|
|
<footer id='bottom'></footer>
|
|
|
|
<%= render :partial => "common/discourse_javascript" %>
|
|
<%= render :partial => "common/persona_javascript" if SiteSetting.enable_persona_logins %>
|
|
<%= render_google_analytics_code %>
|
|
|
|
<!-- Discourse Version: <%= Discourse::VERSION::STRING %> -->
|
|
<!-- Git Version: <%= Discourse.git_version %> -->
|
|
</body>
|
|
</html>
|