2014-02-14 17:10:08 -05:00
|
|
|
<!DOCTYPE html>
|
2018-08-20 13:55:58 +02: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" %>
|
2016-11-14 18:32:59 -02:00
|
|
|
<%- if rtl? %>
|
2018-03-19 09:15:58 +08:00
|
|
|
<%= discourse_stylesheet_link_tag(mobile_view? ? :mobile_rtl : :desktop_rtl) %>
|
2016-11-14 18:32:59 -02:00
|
|
|
<%- else %>
|
2018-03-19 09:15:58 +08:00
|
|
|
<%= discourse_stylesheet_link_tag(mobile_view? ? :mobile : :desktop) %>
|
|
|
|
<%- end %>
|
2021-06-15 14:57:17 +08:00
|
|
|
<%- if theme_id.present? %>
|
2018-03-19 09:15:58 +08:00
|
|
|
<%= discourse_stylesheet_link_tag(mobile_view? ? :mobile_theme : :desktop_theme) %>
|
2015-01-14 11:52:42 +01:00
|
|
|
<%- end %>
|
2017-04-12 10:52:52 -04:00
|
|
|
<%= theme_lookup("head_tag") %>
|
2015-02-02 00:49:58 -08:00
|
|
|
<%= render_google_universal_analytics_code %>
|
2014-03-15 20:02:23 +05:30
|
|
|
<%= yield :head %>
|
2021-03-22 19:41:42 +02: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 16:31:05 +11:00
|
|
|
<%= build_plugin_html 'server:before-head-close-crawler' %>
|
2014-02-14 17:10:08 -05:00
|
|
|
</head>
|
2016-11-14 18:32:59 -02:00
|
|
|
<body class="crawler">
|
2017-04-12 10:52:52 -04:00
|
|
|
<%= theme_lookup("header") %>
|
2015-01-15 01:31:30 -08:00
|
|
|
<header>
|
2018-11-07 22:28:45 +00:00
|
|
|
<a href="<%= path "/" %>">
|
2022-04-02 10:47:01 -05:00
|
|
|
<h1><%=SiteSetting.title%></h1>
|
2018-11-07 22:28:45 +00:00
|
|
|
</a>
|
2014-02-14 17:10:08 -05:00
|
|
|
</header>
|
2015-07-28 13:32:39 +05:30
|
|
|
<div id="main-outlet" class="wrap">
|
2014-02-14 17:10:08 -05:00
|
|
|
<%= yield %>
|
|
|
|
</div>
|
2019-04-03 15:28:00 +05:30
|
|
|
<footer class="container wrap">
|
2020-04-29 21:40:21 +03:00
|
|
|
<nav class='crawler-nav'>
|
2019-06-02 22:03:16 -04:00
|
|
|
<ul>
|
2020-05-05 16:56:04 +03:00
|
|
|
<li itemscope itemtype='http://schema.org/SiteNavigationElement'>
|
|
|
|
<span itemprop='name'>
|
|
|
|
<a href='<%= path "/" %>' itemprop="url"><%= t 'home_title' %> </a>
|
|
|
|
</span>
|
|
|
|
</li>
|
|
|
|
<li itemscope itemtype='http://schema.org/SiteNavigationElement'>
|
|
|
|
<span itemprop='name'>
|
|
|
|
<a href='<%= path "/categories" %>' itemprop="url"><%= t 'js.filters.categories.title' %> </a>
|
|
|
|
</span>
|
|
|
|
</li>
|
|
|
|
<li itemscope itemtype='http://schema.org/SiteNavigationElement'>
|
|
|
|
<span itemprop='name'>
|
|
|
|
<a href='<%= path "/guidelines" %>' itemprop="url"><%= t 'guidelines_topic.title' %> </a>
|
|
|
|
</span>
|
|
|
|
</li>
|
|
|
|
<li itemscope itemtype='http://schema.org/SiteNavigationElement'>
|
|
|
|
<span itemprop='name'>
|
|
|
|
<a href='<%= path "/tos" %>' itemprop="url"><%= t 'tos_topic.title' %> </a>
|
|
|
|
</span>
|
|
|
|
</li>
|
|
|
|
<li itemscope itemtype='http://schema.org/SiteNavigationElement'>
|
|
|
|
<span itemprop='name'>
|
|
|
|
<a href='<%= path "/privacy" %>' itemprop="url"><%= t 'privacy_topic.title' %> </a>
|
|
|
|
</span>
|
|
|
|
</li>
|
2019-06-02 22:03:16 -04:00
|
|
|
</ul>
|
2015-02-13 19:34:22 +08:00
|
|
|
</nav>
|
2018-11-02 06:18:07 +08:00
|
|
|
<p class='powered-by-link'><%= t 'powered_by_html' %></p>
|
2014-06-19 17:32:26 -04:00
|
|
|
</footer>
|
2019-07-31 01:00:46 +08:00
|
|
|
<%= theme_lookup("footer") %>
|
2017-04-12 10:52:52 -04:00
|
|
|
<%= theme_lookup("body_tag") %>
|
2021-03-22 19:41:42 +02: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 02:06:55 -03:00
|
|
|
<%= yield :after_body %>
|
2014-02-14 17:10:08 -05:00
|
|
|
</html>
|