2013-02-05 14:16:51 -05:00
|
|
|
<!DOCTYPE html>
|
2016-01-03 02:49:52 -05:00
|
|
|
<html lang="<%= SiteSetting.default_locale %>" class="<%= html_classes %>">
|
2013-02-05 14:16:51 -05:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
2017-06-12 13:50:30 -04:00
|
|
|
<title><%= content_for?(:title) ? yield(:title) : SiteSetting.title %></title>
|
2014-06-19 18:17:52 -04:00
|
|
|
<meta name="description" content="<%= @description_meta || SiteSetting.site_description %>">
|
2017-04-12 10:52:52 -04:00
|
|
|
<meta name="discourse_theme_key" content="<%= theme_key %>">
|
2017-11-09 14:45:19 -05:00
|
|
|
<meta name="discourse_current_homepage" content="<%= current_homepage %>">
|
2014-06-19 18:17:52 -04:00
|
|
|
<%= render partial: "layouts/head" %>
|
2015-01-15 03:41:30 -05:00
|
|
|
<%= 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 %>
|
|
|
|
|
2016-02-10 12:14:37 -05:00
|
|
|
<script>
|
|
|
|
window.EmberENV = window.EmberENV || {};
|
|
|
|
window.EmberENV['FORCE_JQUERY'] = true;
|
|
|
|
</script>
|
|
|
|
|
2017-04-17 11:52:43 -04:00
|
|
|
<%= preload_script "locales/#{I18n.locale}" %>
|
|
|
|
<%= preload_script "ember_jquery" %>
|
|
|
|
<%= preload_script "preload-store" %>
|
|
|
|
<%= preload_script "vendor" %>
|
|
|
|
<%= preload_script "pretty-text-bundle" %>
|
|
|
|
<%= preload_script "application" %>
|
2016-11-21 00:46:02 -05:00
|
|
|
<%- if allow_plugins? %>
|
2017-04-17 11:52:43 -04:00
|
|
|
<%= preload_script "plugin" %>
|
2016-11-21 00:46:02 -05:00
|
|
|
<%- end %>
|
|
|
|
<%- if allow_third_party_plugins? %>
|
2017-04-17 11:52:43 -04:00
|
|
|
<%= preload_script "plugin-third-party" %>
|
2016-11-21 00:46:02 -05:00
|
|
|
<%- end %>
|
2016-06-14 14:31:51 -04:00
|
|
|
|
2013-09-04 20:41:11 -04:00
|
|
|
<%- if staff? %>
|
2018-01-08 18:23:49 -05:00
|
|
|
<script src="<%= ExtraLocalesController.url('admin') %>"></script>
|
2017-04-17 11:52:43 -04:00
|
|
|
<%= preload_script "admin" %>
|
2013-09-04 20:41:11 -04:00
|
|
|
<%- end %>
|
|
|
|
|
2015-01-14 05:52:42 -05:00
|
|
|
<%- unless customization_disabled? %>
|
2017-04-12 10:52:52 -04:00
|
|
|
<%= raw theme_lookup("head_tag") %>
|
2015-01-14 05:52:42 -05:00
|
|
|
<%- end %>
|
2014-01-02 10:22:04 -05:00
|
|
|
|
2014-01-25 19:42:25 -05:00
|
|
|
<%= render_google_universal_analytics_code %>
|
2015-09-20 11:00:30 -04:00
|
|
|
<link rel="manifest" href="<%= Discourse.base_uri %>/manifest.json">
|
2014-01-25 19:42:25 -05:00
|
|
|
|
2017-01-03 12:50:45 -05:00
|
|
|
<%- if SiteSetting.native_app_install_banner? %>
|
|
|
|
<meta name="apple-itunes-app" content="app-id=1173672076">
|
|
|
|
<%- end %>
|
|
|
|
|
2017-04-20 12:34:40 -04:00
|
|
|
<%= render partial: "common/discourse_stylesheet" %>
|
|
|
|
<%= render partial: "common/special_font_face" %>
|
|
|
|
|
2013-02-21 13:20:00 -05:00
|
|
|
<%= yield :head %>
|
2017-04-18 12:35:19 -04:00
|
|
|
|
2017-11-14 16:31:44 -05:00
|
|
|
<%= build_plugin_html 'server:before-head-close' %>
|
2013-02-05 14:16:51 -05:00
|
|
|
</head>
|
|
|
|
|
2016-07-04 12:10:52 -04:00
|
|
|
<body class="<%= body_classes %>">
|
2016-07-14 13:52:37 -04:00
|
|
|
<%= render_google_tag_manager_code %>
|
|
|
|
|
2016-05-26 16:23:47 -04:00
|
|
|
<div class='debug-eyeline'></div>
|
|
|
|
|
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' %>
|
2015-07-28 04:02:39 -04:00
|
|
|
<div id="main-outlet" class="wrap">
|
2014-02-14 15:32:49 -05:00
|
|
|
<!-- preload-content: -->
|
|
|
|
<%= yield %>
|
|
|
|
<!-- :preload-content -->
|
2015-02-13 06:34:22 -05:00
|
|
|
<footer>
|
|
|
|
<nav itemscope itemtype='http://schema.org/SiteNavigationElement'>
|
2015-04-30 12:46:19 -04:00
|
|
|
<a href='<%= path "/" %>'><%= t 'home_title' %></a>
|
2016-01-21 06:43:56 -05:00
|
|
|
<%= link_to t('js.filters.categories.title'), path("/categories") %>
|
|
|
|
<%= link_to t('guidelines_topic.title'), path("/guidelines") %>
|
|
|
|
<%= link_to t('tos_topic.title'), path("/tos") %>
|
2016-01-21 15:55:07 -05:00
|
|
|
<%= link_to t('privacy_topic.title'), path("/privacy") %>
|
2015-02-13 06:34:22 -05:00
|
|
|
</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>
|
|
|
|
|
2015-08-15 08:09:07 -04:00
|
|
|
<%- unless customization_disabled? || loading_admin? %>
|
2017-04-12 10:52:52 -04:00
|
|
|
<%= theme_lookup("header") %>
|
2017-11-14 16:31:44 -05:00
|
|
|
<%= build_plugin_html 'server:header' %>
|
2013-12-18 14:47:22 -05:00
|
|
|
<%- 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 %>
|
2015-04-09 12:26:24 -04:00
|
|
|
<form id='hidden-login-form' method="post" action="<%=main_app.login_path%>" style="display: none;">
|
2013-12-18 14:47:22 -05:00
|
|
|
<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>
|
2016-07-04 14:15:51 -04:00
|
|
|
(function() {
|
|
|
|
var ps = require('preload-store').default;
|
|
|
|
<%- @preloaded.each do |key, json| %>
|
|
|
|
ps.store("<%= key %>", <%= escape_unicode(json) %>);
|
|
|
|
<% end %>
|
|
|
|
})();
|
2013-12-18 14:47:22 -05:00
|
|
|
</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
|
|
|
|
2015-01-14 05:52:42 -05:00
|
|
|
<%- unless customization_disabled? %>
|
2017-04-12 10:52:52 -04:00
|
|
|
<%= raw theme_lookup("body_tag") %>
|
2015-01-14 05:52:42 -05:00
|
|
|
<%- end %>
|
2017-11-14 16:31:44 -05:00
|
|
|
<%= build_plugin_html 'server:before-body-close' %>
|
2013-02-05 14:16:51 -05:00
|
|
|
</body>
|
|
|
|
</html>
|