2013-02-06 03:16:51 +08:00
|
|
|
<!DOCTYPE html>
|
2013-12-19 03:47:22 +08:00
|
|
|
<html lang="<%= SiteSetting.default_locale %>" class="<%= html_classes %>">
|
2013-02-06 03:16:51 +08:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
2013-03-31 06:16:59 +08:00
|
|
|
<title><%= content_for?(:title) ? yield(:title) + ' - ' + SiteSetting.title : SiteSetting.title %></title>
|
2014-06-20 06:17:52 +08:00
|
|
|
<meta name="description" content="<%= @description_meta || SiteSetting.site_description %>">
|
|
|
|
<%= render partial: "layouts/head" %>
|
2013-02-13 19:04:43 +08:00
|
|
|
|
2014-02-21 06:02:26 +08:00
|
|
|
<%- if SiteSetting.enable_escaped_fragments? %>
|
2015-01-02 20:06:57 +08:00
|
|
|
<meta name="fragment" content="!">
|
2014-02-21 06:02:26 +08:00
|
|
|
<%- end %>
|
|
|
|
|
2014-10-24 10:38:00 +08:00
|
|
|
<%- if shared_session_key %>
|
2015-01-02 20:06:57 +08:00
|
|
|
<meta name="shared_session_key" content="<%= shared_session_key %>">
|
2014-10-24 10:38:00 +08:00
|
|
|
<%- end %>
|
|
|
|
|
2014-05-15 10:59:26 +08:00
|
|
|
<%= script "preload_store" %>
|
2014-07-10 14:32:06 +08:00
|
|
|
<%= script "locales/#{I18n.locale}" %>
|
2014-05-15 10:59:26 +08:00
|
|
|
<%= script "vendor" %>
|
|
|
|
<%= script "application" %>
|
2013-09-05 08:41:11 +08:00
|
|
|
<%- if staff? %>
|
2014-05-15 10:59:26 +08:00
|
|
|
<%= script "admin"%>
|
2013-09-05 08:41:11 +08:00
|
|
|
<%- end %>
|
|
|
|
|
2015-01-13 09:18:52 +08:00
|
|
|
<%= raw SiteText.text_for(:head) %>
|
2014-01-02 23:22:04 +08:00
|
|
|
|
2014-01-26 08:42:25 +08:00
|
|
|
<%= render_google_universal_analytics_code %>
|
|
|
|
|
2013-02-22 02:20:00 +08:00
|
|
|
<%= yield :head %>
|
2013-02-06 03:16:51 +08:00
|
|
|
</head>
|
|
|
|
|
2013-12-19 03:47:22 +08:00
|
|
|
<body>
|
2014-02-15 04:32:49 +08:00
|
|
|
<noscript data-path="<%= request.env['PATH_INFO'] %>">
|
|
|
|
<header class="d-header">
|
|
|
|
<div class="container">
|
|
|
|
<div class="contents">
|
|
|
|
<div class="row">
|
|
|
|
<div class="title span13">
|
2014-06-19 03:44:00 +08:00
|
|
|
<a href="/"><img src="<%= (mobile_view? && SiteSetting.mobile_logo_url) || SiteSetting.logo_url %>" alt="<%=SiteSetting.title%>" id="site-logo"></a>
|
2014-02-15 04:32:49 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
<div id="main-outlet" class="container">
|
|
|
|
<!-- preload-content: -->
|
|
|
|
<%= yield %>
|
|
|
|
<!-- :preload-content -->
|
|
|
|
</div>
|
2014-06-24 15:12:01 +08:00
|
|
|
<footer id='noscript-footer'>
|
2014-06-20 05:32:26 +08:00
|
|
|
<p><%= t 'powered_by_html' %></p>
|
|
|
|
</footer>
|
2014-02-15 04:32:49 +08:00
|
|
|
</noscript>
|
|
|
|
|
2013-04-02 14:44:08 +08:00
|
|
|
<!--[if IE 9]><script type="text/javascript">ie = "new";</script><![endif]-->
|
|
|
|
|
2013-12-19 03:47:22 +08:00
|
|
|
<%- unless customization_disabled? %>
|
|
|
|
<%= SiteCustomization.custom_header(session[:preview_style], mobile_view? ? :mobile : :desktop) %>
|
|
|
|
<%- end %>
|
2013-12-02 08:11:20 +08:00
|
|
|
|
2013-12-19 03:47:22 +08:00
|
|
|
<section id='main'>
|
|
|
|
</section>
|
|
|
|
|
2014-12-04 21:48:25 +08:00
|
|
|
<div id='offscreen-content'>
|
|
|
|
</div>
|
|
|
|
|
2013-12-19 03:47:22 +08:00
|
|
|
<% unless current_user %>
|
|
|
|
<form id='hidden-login-form' method="post" action="<%=login_path%>" style="display: none;">
|
|
|
|
<input name="username" type="text" id="signin_username">
|
|
|
|
<input name="password" type="password" id="signin_password">
|
|
|
|
<input name="redirect" type="hidden">
|
2014-08-12 17:23:45 +08:00
|
|
|
<input type="submit" id="signin-button" value="<%= t 'log_in' %>">
|
2013-12-19 03:47:22 +08:00
|
|
|
</form>
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<%- if @preloaded.present? %>
|
|
|
|
<script>
|
|
|
|
<%- @preloaded.each do |key, json| %>
|
|
|
|
PreloadStore.store("<%= key %>",<%= escape_unicode(json) %>);
|
|
|
|
<% end %>
|
|
|
|
</script>
|
|
|
|
<%- end %>
|
2013-12-12 00:17:55 +08:00
|
|
|
|
2013-12-19 03:47:22 +08:00
|
|
|
<%= yield :data %>
|
2013-02-26 00:42:20 +08:00
|
|
|
|
2013-12-19 03:47:22 +08:00
|
|
|
<%= render :partial => "common/discourse_javascript" %>
|
2013-11-13 01:13:17 +08:00
|
|
|
|
2013-12-19 03:47:22 +08:00
|
|
|
<%= render_google_analytics_code %>
|
2014-11-12 21:35:20 +08:00
|
|
|
|
2015-01-13 09:18:52 +08:00
|
|
|
<%= raw SiteText.text_for(:bottom) %>
|
2013-02-06 03:16:51 +08:00
|
|
|
</body>
|
|
|
|
</html>
|