2015-02-13 06:34:22 -05:00
|
|
|
<div itemscope itemtype='http://schema.org/WebPage'>
|
|
|
|
<meta itemprop='lastReviewed' content='<%= @topic.first_post.updated_at.to_date.to_formatted_s(:iso_8601) %>'>
|
|
|
|
<ul class='nav-pills' role='navigation' itemscope itemtype='http://schema.org/SiteNavigationElement'>
|
2017-03-08 02:42:24 -05:00
|
|
|
<% unless SiteSetting.login_required? && current_user.nil? %>
|
2019-05-22 09:29:15 -04:00
|
|
|
<li class="nav-item-about"><%= link_to t('js.about.simple_title'), about_index_path %></a></li>
|
2021-12-15 22:24:11 -05:00
|
|
|
<% if @faq_overridden %>
|
2019-05-22 09:29:15 -04:00
|
|
|
<li class='nav-item-guidelines'><a class='<%= @page == 'faq' ? 'active' : '' %>' href='<%= guidelines_path %>'><%= t 'js.guidelines' %></a></li>
|
2017-03-08 05:30:49 -05:00
|
|
|
<li class='nav-item-faq'><a href='<%= faq_path %>'><%= t 'js.faq' %></a></li>
|
|
|
|
<% else %>
|
|
|
|
<li class='nav-item-faq'><a class='<%= @page == 'faq' ? 'active' : '' %>' href='<%=faq_path%>'><%= t 'js.faq' %></a></li>
|
|
|
|
<% end %>
|
2015-02-13 06:34:22 -05:00
|
|
|
<% end %>
|
2019-05-22 09:29:15 -04:00
|
|
|
<li class='nav-item-tos'><a href='<%= tos_path %>' class='<%= @page == 'tos' ? 'active' : '' %>'><%= t 'js.tos' %></a></li>
|
|
|
|
<li class='nav-item-privacy'><a href='<%= privacy_path %>' class='<%= @page == 'privacy' ? 'active' : '' %>'><%= t 'js.privacy' %></a></li>
|
2015-02-13 06:34:22 -05:00
|
|
|
</ul>
|
2014-07-24 14:27:34 -04:00
|
|
|
|
2015-02-13 06:34:22 -05:00
|
|
|
<% if staff? %>
|
2018-11-26 16:49:57 -05:00
|
|
|
<p><a href='<%= @topic.url %>'>
|
|
|
|
<svg class="fa d-icon d-icon-pencil-alt svg-icon" xmlns="http://www.w3.org/2000/svg">
|
2021-11-24 23:22:43 -05:00
|
|
|
<use href="#pencil-alt"></use>
|
2018-11-26 16:49:57 -05:00
|
|
|
</svg>
|
|
|
|
<%= t 'edit_this_page' %>
|
|
|
|
</a></p>
|
2015-02-13 06:34:22 -05:00
|
|
|
<% end %>
|
2014-07-24 14:27:34 -04:00
|
|
|
|
2015-02-13 06:34:22 -05:00
|
|
|
<div itemprop='mainContentOfPage'>
|
|
|
|
<%= @body.html_safe %>
|
|
|
|
</div>
|
|
|
|
</div>
|
2014-10-30 14:26:35 -04:00
|
|
|
|
|
|
|
<% if @title %>
|
|
|
|
<% content_for :title do %><%= @title %><% end %>
|
2016-08-19 07:34:43 -04:00
|
|
|
<% content_for :head do %>
|
|
|
|
<%= raw crawlable_meta_data(title: @title, description: SiteSetting.site_description) %>
|
|
|
|
<% end %>
|
|
|
|
<% else %>
|
|
|
|
<% content_for :head do %>
|
|
|
|
<%= raw crawlable_meta_data(title: SiteSetting.title, description: SiteSetting.site_description) %>
|
|
|
|
<% end %>
|
2014-10-30 14:26:35 -04:00
|
|
|
<% end %>
|