2014-02-14 17:10:08 -05:00
|
|
|
<!DOCTYPE html>
|
2018-08-20 07:55:58 -04:00
|
|
|
<html lang="<%= html_lang %>">
|
2014-02-14 17:10:08 -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 %>">
|
|
|
|
<%= render partial: "layouts/head" %>
|
2022-04-06 12:10:46 -04:00
|
|
|
<%= render partial: "common/discourse_stylesheet" %>
|
2017-04-12 10:52:52 -04:00
|
|
|
<%= theme_lookup("head_tag") %>
|
2015-02-02 03:49:58 -05:00
|
|
|
<%= render_google_universal_analytics_code %>
|
2014-03-15 10:32:23 -04:00
|
|
|
<%= yield :head %>
|
2021-03-22 13:41:42 -04:00
|
|
|
<% if show_browser_update? %>
|
|
|
|
<style>.buorg {position:absolute; z-index:111111; width:100%; top:0px; left:0px; background:#FDF2AB; text-align:left; font-family: sans-serif; color:#000; font-size: 14px;} .buorg div {padding: 8px;} .buorg a, .buorg a:visited {color:#E25600; text-decoration: underline;} @media print { .buorg { display: none !important; } }</style>
|
|
|
|
<% end %>
|
2018-10-25 01:31:05 -04:00
|
|
|
<%= build_plugin_html 'server:before-head-close-crawler' %>
|
2014-02-14 17:10:08 -05:00
|
|
|
</head>
|
2016-11-14 15:32:59 -05:00
|
|
|
<body class="crawler">
|
2017-04-12 10:52:52 -04:00
|
|
|
<%= theme_lookup("header") %>
|
2022-04-07 10:07:00 -04:00
|
|
|
<%= render partial: "layouts/noscript_header" %>
|
|
|
|
<div id="main-outlet" class="wrap" role="main">
|
2014-02-14 17:10:08 -05:00
|
|
|
<%= yield %>
|
|
|
|
</div>
|
2022-04-07 10:07:00 -04:00
|
|
|
<%= render partial: "layouts/noscript_footer" %>
|
2019-07-30 13:00:46 -04:00
|
|
|
<%= theme_lookup("footer") %>
|
2017-04-12 10:52:52 -04:00
|
|
|
<%= theme_lookup("body_tag") %>
|
2021-03-22 13:41:42 -04:00
|
|
|
<% if show_browser_update? %>
|
|
|
|
<div class="buorg"><div><%= I18n.t("js.browser_update").html_safe %></div></div>
|
|
|
|
<% end %>
|
2014-02-14 17:10:08 -05:00
|
|
|
</body>
|
2016-08-01 01:06:55 -04:00
|
|
|
<%= yield :after_body %>
|
2014-02-14 17:10:08 -05:00
|
|
|
</html>
|