2013-02-06 03:16:51 +08:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<title><%=t :title%></title>
|
2013-02-14 05:17:29 +08:00
|
|
|
<meta content="width=device-width, initial-scale=1.0" name="viewport">
|
2013-02-06 03:16:51 +08:00
|
|
|
<meta content="" name="description">
|
|
|
|
<meta content="" name="author">
|
2013-02-13 19:04:43 +08:00
|
|
|
|
|
|
|
<%= canonical_link_tag %>
|
2013-02-06 03:16:51 +08:00
|
|
|
|
|
|
|
<link rel="icon" type="image/png" href=<%=SiteSetting.favicon_url%>>
|
|
|
|
<%= javascript_include_tag "preload_store" %>
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-02-11 19:41:23 +08:00
|
|
|
<%= render :partial => "common/special_font_face" %>
|
|
|
|
<%= render :partial => "common/discourse_stylesheet" %>
|
2013-02-06 03:16:51 +08:00
|
|
|
|
|
|
|
|
|
|
|
<%=csrf_meta_tags%>
|
|
|
|
</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>
|
2013-02-26 00:42:20 +08:00
|
|
|
</div>
|
2013-02-06 03:16:51 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
<div id="main-outlet" class="container">
|
|
|
|
<%= yield %>
|
|
|
|
</div>
|
|
|
|
</noscript>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<%- if @preloaded.present? %>
|
|
|
|
<script>
|
|
|
|
<%- @preloaded.each do |key, json| %>
|
|
|
|
PreloadStore.store("<%= key %>", <%= raw json %>)
|
|
|
|
<% end %>
|
2013-02-26 00:42:20 +08:00
|
|
|
</script>
|
2013-02-06 03:16:51 +08:00
|
|
|
<%- end %>
|
|
|
|
|
|
|
|
<%= yield :data %>
|
2013-02-26 00:42:20 +08:00
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
<footer id='bottom'></footer>
|
2013-02-11 19:41:23 +08:00
|
|
|
|
2013-02-11 19:36:43 +08:00
|
|
|
<%= render :partial => "common/discourse_javascript" %>
|
2013-02-11 19:34:14 +08:00
|
|
|
<%= render_google_analytics_code %>
|
2013-02-06 03:16:51 +08:00
|
|
|
|
2013-02-27 02:47:07 +08:00
|
|
|
<!-- Discourse Version: <%= Discourse::VERSION::STRING %> -->
|
2013-02-18 15:00:49 +08:00
|
|
|
<!-- Git Version: <%= Discourse.git_version %> -->
|
2013-02-06 03:16:51 +08:00
|
|
|
</body>
|
|
|
|
</html>
|