discourse/app/views/layouts/crawler.html.erb

50 lines
1.9 KiB
Plaintext
Raw Normal View History

<!DOCTYPE html>
<html lang="<%= html_lang %>">
<head>
<meta charset="utf-8">
<title><%= content_for?(:title) ? yield(:title) : SiteSetting.title %></title>
<meta name="description" content="<%= @description_meta || SiteSetting.site_description %>">
<%= render partial: "layouts/head" %>
2016-11-14 15:32:59 -05:00
<%- if rtl? %>
<%= discourse_stylesheet_link_tag(mobile_view? ? :mobile_rtl : :desktop_rtl) %>
2016-11-14 15:32:59 -05:00
<%- else %>
<%= discourse_stylesheet_link_tag(mobile_view? ? :mobile : :desktop) %>
<%- end %>
<%- if theme_ids.present? %>
<%= discourse_stylesheet_link_tag(mobile_view? ? :mobile_theme : :desktop_theme) %>
<%- end %>
<%= theme_lookup("head_tag") %>
<%= render_google_universal_analytics_code %>
<%= yield :head %>
<%= build_plugin_html 'server:before-head-close-crawler' %>
</head>
2016-11-14 15:32:59 -05:00
<body class="crawler">
<%= theme_lookup("header") %>
2015-01-15 04:31:30 -05:00
<header>
<a href="<%= path "/" %>">
2018-11-14 02:03:02 -05:00
<%- if SiteSetting.site_logo_url.present? %>
<img src="<%=SiteSetting.site_logo_url%>" alt="<%=SiteSetting.title%>" id="site-logo" style="max-width: 150px;">
<%- else %>
<h1><%=SiteSetting.title%></h1>
<% end %>
</a>
</header>
2015-07-28 04:02:39 -04:00
<div id="main-outlet" class="wrap">
<%= yield %>
</div>
<footer class="container wrap">
<nav class='crawler-nav' itemscope itemtype='http://schema.org/SiteNavigationElement'>
<a href='<%= path "/" %>'><%= t 'home_title' %></a>
<%= 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") %>
</nav>
<p class='powered-by-link'><%= t 'powered_by_html' %></p>
</footer>
<%= theme_lookup("body_tag") %>
</body>
2016-08-01 01:06:55 -04:00
<%= yield :after_body %>
</html>