2022-04-07 10:07:00 -04:00
|
|
|
<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.title' %> </a>
|
|
|
|
</span>
|
|
|
|
</li>
|
2023-06-07 14:31:20 -04:00
|
|
|
<% if tos_url.present? %>
|
2023-05-30 10:38:14 -04:00
|
|
|
<li itemscope itemtype='http://schema.org/SiteNavigationElement'>
|
|
|
|
<span itemprop='name'>
|
2023-06-07 14:31:20 -04:00
|
|
|
<a href='<%= tos_url %>' itemprop="url"><%= t 'tos_topic.title' %> </a>
|
2023-05-30 10:38:14 -04:00
|
|
|
</span>
|
|
|
|
</li>
|
|
|
|
<% end %>
|
2023-06-07 14:31:20 -04:00
|
|
|
<% if privacy_policy_url.present? %>
|
2023-05-30 10:38:14 -04:00
|
|
|
<li itemscope itemtype='http://schema.org/SiteNavigationElement'>
|
|
|
|
<span itemprop='name'>
|
2023-06-07 14:31:20 -04:00
|
|
|
<a href='<%= privacy_policy_url %>' itemprop="url"><%= t 'privacy_topic.title' %> </a>
|
2023-05-30 10:38:14 -04:00
|
|
|
</span>
|
|
|
|
</li>
|
|
|
|
<% end %>
|
2022-04-07 10:07:00 -04:00
|
|
|
</ul>
|
|
|
|
</nav>
|
|
|
|
<p class='powered-by-link'><%= t 'powered_by_html' %></p>
|
|
|
|
</footer>
|