2013-02-06 03:16:51 +08:00
|
|
|
<!DOCTYPE html>
|
2018-08-20 19:55:58 +08:00
|
|
|
<html lang="<%= html_lang %>" class="<%= html_classes %>">
|
2013-02-06 03:16:51 +08:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
2017-06-13 01:50:30 +08:00
|
|
|
<title><%= content_for?(:title) ? yield(:title) : SiteSetting.title %></title>
|
2014-06-20 06:17:52 +08:00
|
|
|
<meta name="description" content="<%= @description_meta || SiteSetting.site_description %>">
|
2018-08-08 12:46:34 +08:00
|
|
|
<meta name="discourse_theme_ids" content="<%= theme_ids&.join(",") %>">
|
2017-11-10 03:45:19 +08:00
|
|
|
<meta name="discourse_current_homepage" content="<%= current_homepage %>">
|
2014-06-20 06:17:52 +08:00
|
|
|
<%= render partial: "layouts/head" %>
|
2015-01-15 16:41:30 +08:00
|
|
|
<%= discourse_csrf_tags %>
|
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 %>
|
|
|
|
|
2019-03-06 02:39:42 +08:00
|
|
|
<%= build_plugin_html 'server:before-script-load' %>
|
|
|
|
|
2017-04-17 23:52:43 +08:00
|
|
|
<%= preload_script "locales/#{I18n.locale}" %>
|
2019-11-05 09:15:44 +08:00
|
|
|
<%- if ExtraLocalesController.client_overrides_exist? %>
|
|
|
|
<%= preload_script_url ExtraLocalesController.url('overrides') %>
|
|
|
|
<%- end %>
|
2017-04-17 23:52:43 +08:00
|
|
|
<%= preload_script "ember_jquery" %>
|
|
|
|
<%= preload_script "preload-store" %>
|
|
|
|
<%= preload_script "vendor" %>
|
|
|
|
<%= preload_script "pretty-text-bundle" %>
|
|
|
|
<%= preload_script "application" %>
|
2019-07-15 22:52:54 +08:00
|
|
|
<%- Discourse.find_plugin_js_assets(include_official: allow_plugins?, include_unofficial: allow_third_party_plugins?).each do |file| %>
|
|
|
|
<%= preload_script file %>
|
2016-11-21 13:46:02 +08:00
|
|
|
<%- end %>
|
2013-09-05 08:41:11 +08:00
|
|
|
<%- if staff? %>
|
2019-11-05 09:15:44 +08:00
|
|
|
<%= preload_script_url ExtraLocalesController.url('admin') %>
|
2017-04-17 23:52:43 +08:00
|
|
|
<%= preload_script "admin" %>
|
2013-09-05 08:41:11 +08:00
|
|
|
<%- end %>
|
|
|
|
|
2015-01-14 18:52:42 +08:00
|
|
|
<%- unless customization_disabled? %>
|
2019-07-31 01:00:46 +08:00
|
|
|
<%= theme_translations_lookup %>
|
|
|
|
<%= theme_js_lookup %>
|
|
|
|
<%= theme_lookup("head_tag") %>
|
2015-01-14 18:52:42 +08:00
|
|
|
<%- end %>
|
2014-01-02 23:22:04 +08:00
|
|
|
|
2018-04-04 02:20:51 +08:00
|
|
|
<%= render_google_tag_manager_head_code %>
|
2014-01-26 08:42:25 +08:00
|
|
|
<%= render_google_universal_analytics_code %>
|
2019-03-16 04:10:05 +08:00
|
|
|
<link rel="manifest" href="<%= Discourse.base_uri %>/manifest.webmanifest" crossorigin="use-credentials">
|
2014-01-26 08:42:25 +08:00
|
|
|
|
2019-04-18 00:25:13 +08:00
|
|
|
<%- if include_ios_native_app_banner? %>
|
2019-08-27 22:23:57 +08:00
|
|
|
<meta name="apple-itunes-app" content="app-id=<%= SiteSetting.ios_app_id %><%= ios_app_argument %>">
|
2017-01-04 01:50:45 +08:00
|
|
|
<%- end %>
|
|
|
|
|
2017-04-21 00:34:40 +08:00
|
|
|
<%= render partial: "common/discourse_stylesheet" %>
|
|
|
|
|
2013-02-22 02:20:00 +08:00
|
|
|
<%= yield :head %>
|
2017-04-19 00:35:19 +08:00
|
|
|
|
2017-11-15 05:31:44 +08:00
|
|
|
<%= build_plugin_html 'server:before-head-close' %>
|
2018-10-02 12:29:04 +08:00
|
|
|
|
|
|
|
<%= tag.meta id: 'data-discourse-setup', data: client_side_setup_data %>
|
2018-10-09 13:50:45 +08:00
|
|
|
|
2018-10-30 06:30:36 +08:00
|
|
|
<%- if !current_user && cookies[:authentication_data] %>
|
|
|
|
<meta id="data-authentication" data-authentication-data="<%= cookies.delete(:authentication_data) %>">
|
2018-10-09 13:50:45 +08:00
|
|
|
<%- end %>
|
2013-02-06 03:16:51 +08:00
|
|
|
</head>
|
|
|
|
|
2016-07-05 00:10:52 +08:00
|
|
|
<body class="<%= body_classes %>">
|
2018-04-04 02:20:51 +08:00
|
|
|
<%= render_google_tag_manager_body_code %>
|
2014-02-15 04:32:49 +08:00
|
|
|
<noscript data-path="<%= request.env['PATH_INFO'] %>">
|
2015-02-26 00:35:47 +08:00
|
|
|
<%= render partial: 'header' %>
|
2015-07-28 16:02:39 +08:00
|
|
|
<div id="main-outlet" class="wrap">
|
2014-02-15 04:32:49 +08:00
|
|
|
<!-- preload-content: -->
|
|
|
|
<%= yield %>
|
|
|
|
<!-- :preload-content -->
|
2015-02-13 19:34:22 +08:00
|
|
|
<footer>
|
|
|
|
<nav itemscope itemtype='http://schema.org/SiteNavigationElement'>
|
2015-05-01 00:46:19 +08:00
|
|
|
<a href='<%= path "/" %>'><%= t 'home_title' %></a>
|
2016-01-21 19:43:56 +08: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-22 04:55:07 +08:00
|
|
|
<%= link_to t('privacy_topic.title'), path("/privacy") %>
|
2015-02-13 19:34:22 +08:00
|
|
|
</nav>
|
|
|
|
</footer>
|
2014-02-15 04:32:49 +08:00
|
|
|
</div>
|
2015-02-13 19:34:22 +08:00
|
|
|
|
2014-06-24 15:12:01 +08:00
|
|
|
<footer id='noscript-footer'>
|
2018-11-27 05:49:57 +08:00
|
|
|
<p style="text-align:center;"><%= t 'powered_by_html' %></p>
|
2014-06-20 05:32:26 +08:00
|
|
|
</footer>
|
2014-02-15 04:32:49 +08:00
|
|
|
</noscript>
|
|
|
|
|
2018-10-15 14:29:10 +08:00
|
|
|
<%- unless customization_disabled? %>
|
2017-04-12 22:52:52 +08:00
|
|
|
<%= theme_lookup("header") %>
|
2017-11-15 05:31:44 +08:00
|
|
|
<%= build_plugin_html 'server:header' %>
|
2013-12-19 03:47:22 +08:00
|
|
|
<%- 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 %>
|
2015-04-10 00:26:24 +08:00
|
|
|
<form id='hidden-login-form' method="post" action="<%=main_app.login_path%>" style="display: none;">
|
2013-12-19 03:47:22 +08: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 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 %>
|
|
|
|
|
2018-10-01 15:24:27 +08:00
|
|
|
<div class="hidden" id="data-preloaded" data-preloaded="<%= preloaded_json %>"></div>
|
2018-09-28 17:28:33 +08:00
|
|
|
<%= preload_script "preload-application-data" %>
|
|
|
|
|
2013-12-19 03:47:22 +08:00
|
|
|
<%= yield :data %>
|
2013-02-26 00:42:20 +08:00
|
|
|
|
2018-10-09 13:50:45 +08:00
|
|
|
<%= preload_script 'browser-update' %>
|
2013-11-13 01:13:17 +08:00
|
|
|
|
2015-01-14 18:52:42 +08:00
|
|
|
<%- unless customization_disabled? %>
|
2019-07-31 01:00:46 +08:00
|
|
|
<%= theme_lookup("body_tag") %>
|
2015-01-14 18:52:42 +08:00
|
|
|
<%- end %>
|
2017-11-15 05:31:44 +08:00
|
|
|
<%= build_plugin_html 'server:before-body-close' %>
|
2013-02-06 03:16:51 +08:00
|
|
|
</body>
|
|
|
|
</html>
|