mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-07 02:22:49 +08:00
36 lines
1.4 KiB
Text
36 lines
1.4 KiB
Text
<footer class="container wrap">
|
|
<nav class='crawler-nav'>
|
|
<ul>
|
|
<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.guidelines_title' %> </a>
|
|
</span>
|
|
</li>
|
|
<% if tos_url.present? %>
|
|
<li itemscope itemtype='http://schema.org/SiteNavigationElement'>
|
|
<span itemprop='name'>
|
|
<a href='<%= tos_url %>' itemprop="url"><%= t 'tos_topic.title' %> </a>
|
|
</span>
|
|
</li>
|
|
<% end %>
|
|
<% if privacy_policy_url.present? %>
|
|
<li itemscope itemtype='http://schema.org/SiteNavigationElement'>
|
|
<span itemprop='name'>
|
|
<a href='<%= privacy_policy_url %>' itemprop="url"><%= t 'privacy_topic.title' %> </a>
|
|
</span>
|
|
</li>
|
|
<% end %>
|
|
</ul>
|
|
</nav>
|
|
<p class='powered-by-link'><%= t 'powered_by_html' %></p>
|
|
</footer>
|