2015-02-13 19:34:22 +08: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 15:42:24 +08:00
|
|
|
<% unless SiteSetting.login_required? && current_user.nil? %>
|
2017-10-31 02:34:12 +08:00
|
|
|
<li class="nav-item-about"><%= link_to t('about'), about_index_path %></a></li>
|
2017-03-08 18:30:49 +08:00
|
|
|
<% if @faq_overriden %>
|
|
|
|
<li class='nav-item-guidelines'><a class='<%= @page == 'faq' ? 'active' : '' %>' href='<%= guidelines_path %>'><%= t 'guidelines' %></a></li>
|
|
|
|
<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 19:34:22 +08:00
|
|
|
<% end %>
|
|
|
|
<li class='nav-item-tos'><a href='<%= tos_path %>' class='<%= @page == 'tos' ? 'active' : '' %>'><%= t 'terms_of_service.title' %></a></li>
|
|
|
|
<li class='nav-item-privacy'><a href='<%= privacy_path %>' class='<%= @page == 'privacy' ? 'active' : '' %>'><%= t 'privacy' %></a></li>
|
|
|
|
</ul>
|
2014-07-25 02:27:34 +08:00
|
|
|
|
2015-02-13 19:34:22 +08:00
|
|
|
<% if staff? %>
|
2018-11-27 05:49:57 +08:00
|
|
|
<p><a href='<%= @topic.url %>'>
|
|
|
|
<svg class="fa d-icon d-icon-pencil-alt svg-icon" xmlns="http://www.w3.org/2000/svg">
|
|
|
|
<use xlink:href="#pencil-alt"></use>
|
|
|
|
</svg>
|
|
|
|
<%= t 'edit_this_page' %>
|
|
|
|
</a></p>
|
2015-02-13 19:34:22 +08:00
|
|
|
<% end %>
|
2014-07-25 02:27:34 +08:00
|
|
|
|
2015-02-13 19:34:22 +08:00
|
|
|
<div itemprop='mainContentOfPage'>
|
|
|
|
<%= @body.html_safe %>
|
|
|
|
</div>
|
|
|
|
</div>
|
2014-10-31 02:26:35 +08:00
|
|
|
|
|
|
|
<% if @title %>
|
|
|
|
<% content_for :title do %><%= @title %><% end %>
|
2016-08-19 19:34:43 +08: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-31 02:26:35 +08:00
|
|
|
<% end %>
|