2013-02-05 14:16:51 -05:00
|
|
|
<!DOCTYPE html>
|
2015-01-28 13:33:11 -05:00
|
|
|
<!--[if IE 9]><html lang="<%= SiteSetting.default_locale %>" class="ie9 <%= html_classes %>"><![endif]-->
|
|
|
|
<!--[if (!IE 9) | (!IE)]><!--><html lang="<%= SiteSetting.default_locale %>" class="<%= html_classes %>"><!--<![endif]-->
|
2013-02-05 14:16:51 -05:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
2013-03-30 18:16:59 -04:00
|
|
|
<title><%= content_for?(:title) ? yield(:title) + ' - ' + SiteSetting.title : SiteSetting.title %></title>
|
2014-06-19 18:17:52 -04:00
|
|
|
<meta name="description" content="<%= @description_meta || SiteSetting.site_description %>">
|
|
|
|
<%= render partial: "layouts/head" %>
|
2015-01-15 03:41:30 -05:00
|
|
|
<%= render partial: "common/special_font_face" %>
|
|
|
|
<%= render partial: "common/discourse_stylesheet" %>
|
|
|
|
<%= discourse_csrf_tags %>
|
2013-02-13 06:04:43 -05:00
|
|
|
|
2014-02-20 17:02:26 -05:00
|
|
|
<%- if SiteSetting.enable_escaped_fragments? %>
|
2015-01-02 07:06:57 -05:00
|
|
|
<meta name="fragment" content="!">
|
2014-02-20 17:02:26 -05:00
|
|
|
<%- end %>
|
|
|
|
|
2014-10-23 22:38:00 -04:00
|
|
|
<%- if shared_session_key %>
|
2015-01-02 07:06:57 -05:00
|
|
|
<meta name="shared_session_key" content="<%= shared_session_key %>">
|
2014-10-23 22:38:00 -04:00
|
|
|
<%- end %>
|
|
|
|
|
2014-05-14 22:59:26 -04:00
|
|
|
<%= script "preload_store" %>
|
2014-07-10 02:32:06 -04:00
|
|
|
<%= script "locales/#{I18n.locale}" %>
|
2014-05-14 22:59:26 -04:00
|
|
|
<%= script "vendor" %>
|
|
|
|
<%= script "application" %>
|
2013-09-04 20:41:11 -04:00
|
|
|
<%- if staff? %>
|
2014-05-14 22:59:26 -04:00
|
|
|
<%= script "admin"%>
|
2013-09-04 20:41:11 -04:00
|
|
|
<%- end %>
|
|
|
|
|
2015-01-14 05:52:42 -05:00
|
|
|
<%- unless customization_disabled? %>
|
|
|
|
<%= raw SiteCustomization.custom_head_tag(session[:preview_style]) %>
|
|
|
|
<%- end %>
|
2014-01-02 10:22:04 -05:00
|
|
|
|
2014-01-25 19:42:25 -05:00
|
|
|
<%= render_google_universal_analytics_code %>
|
|
|
|
|
2013-02-21 13:20:00 -05:00
|
|
|
<%= yield :head %>
|
2013-02-05 14:16:51 -05:00
|
|
|
</head>
|
|
|
|
|
2013-12-18 14:47:22 -05:00
|
|
|
<body>
|
2014-02-14 15:32:49 -05:00
|
|
|
<noscript data-path="<%= request.env['PATH_INFO'] %>">
|
2015-02-25 11:35:47 -05:00
|
|
|
<%= render partial: 'header' %>
|
2014-02-14 15:32:49 -05:00
|
|
|
<div id="main-outlet" class="container">
|
|
|
|
<!-- preload-content: -->
|
|
|
|
<%= yield %>
|
|
|
|
<!-- :preload-content -->
|
2015-02-13 06:34:22 -05:00
|
|
|
<footer>
|
|
|
|
<nav itemscope itemtype='http://schema.org/SiteNavigationElement'>
|
|
|
|
<a href='/'><%= t 'home_title' %></a>
|
|
|
|
<%= link_to t('js.filters.categories.title'), categories_path %>
|
|
|
|
<%= link_to t('guidelines_topic.title'), guidelines_path %>
|
|
|
|
<%= link_to t('tos_topic.title'), tos_path %>
|
|
|
|
<%= link_to t('privacy_topic.title'), privacy_path %>
|
|
|
|
</nav>
|
|
|
|
</footer>
|
2014-02-14 15:32:49 -05:00
|
|
|
</div>
|
2015-02-13 06:34:22 -05:00
|
|
|
|
2014-06-24 03:12:01 -04:00
|
|
|
<footer id='noscript-footer'>
|
2014-06-19 17:32:26 -04:00
|
|
|
<p><%= t 'powered_by_html' %></p>
|
|
|
|
</footer>
|
2014-02-14 15:32:49 -05:00
|
|
|
</noscript>
|
|
|
|
|
2013-04-02 02:44:08 -04:00
|
|
|
<!--[if IE 9]><script type="text/javascript">ie = "new";</script><![endif]-->
|
|
|
|
|
2013-12-18 14:47:22 -05:00
|
|
|
<%- unless customization_disabled? %>
|
|
|
|
<%= SiteCustomization.custom_header(session[:preview_style], mobile_view? ? :mobile : :desktop) %>
|
|
|
|
<%- end %>
|
2013-12-01 19:11:20 -05:00
|
|
|
|
2013-12-18 14:47:22 -05:00
|
|
|
<section id='main'>
|
|
|
|
</section>
|
|
|
|
|
2014-12-04 08:48:25 -05:00
|
|
|
<div id='offscreen-content'>
|
|
|
|
</div>
|
|
|
|
|
2013-12-18 14:47:22 -05: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 05:23:45 -04:00
|
|
|
<input type="submit" id="signin-button" value="<%= t 'log_in' %>">
|
2013-12-18 14:47:22 -05:00
|
|
|
</form>
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<%- if @preloaded.present? %>
|
|
|
|
<script>
|
|
|
|
<%- @preloaded.each do |key, json| %>
|
|
|
|
PreloadStore.store("<%= key %>",<%= escape_unicode(json) %>);
|
|
|
|
<% end %>
|
|
|
|
</script>
|
|
|
|
<%- end %>
|
2013-12-11 11:17:55 -05:00
|
|
|
|
2013-12-18 14:47:22 -05:00
|
|
|
<%= yield :data %>
|
2013-02-25 11:42:20 -05:00
|
|
|
|
2013-12-18 14:47:22 -05:00
|
|
|
<%= render :partial => "common/discourse_javascript" %>
|
2013-11-12 12:13:17 -05:00
|
|
|
|
2013-12-18 14:47:22 -05:00
|
|
|
<%= render_google_analytics_code %>
|
2014-11-12 08:35:20 -05:00
|
|
|
|
2015-01-14 05:52:42 -05:00
|
|
|
<%- unless customization_disabled? %>
|
|
|
|
<%= raw SiteCustomization.custom_body_tag(session[:preview_style]) %>
|
|
|
|
<%- end %>
|
2013-02-05 14:16:51 -05:00
|
|
|
</body>
|
|
|
|
</html>
|