2014-02-23 19:47:44 -06:00
|
|
|
<h1 class="page-not-found"><%= t 'page_not_found.title' %></h1>
|
2013-07-11 15:38:46 -05:00
|
|
|
|
2017-11-14 15:31:44 -06:00
|
|
|
<%= build_plugin_html 'server:not-found-before-topics' %>
|
2017-11-14 10:57:17 -06:00
|
|
|
|
2017-08-13 11:02:44 -05:00
|
|
|
<% unless SiteSetting.login_required? && current_user.nil? %>
|
|
|
|
<div class="row page-not-found-topics">
|
2017-11-24 11:41:31 -06:00
|
|
|
<div class="popular-topics">
|
2017-08-13 11:02:44 -05:00
|
|
|
<h2 class="popular-topics-title"><%= t 'page_not_found.popular_topics' %></h2>
|
|
|
|
<% @top_viewed.each do |t| %>
|
|
|
|
<div class='not-found-topic'>
|
|
|
|
<%= link_to t.title, t.relative_url %><%= category_badge(t.category) %>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
2018-10-24 15:09:36 -05:00
|
|
|
<a href="<%= path "/top" %>" class="btn btn-default"><%= t 'page_not_found.see_more' %>…</a>
|
2017-08-13 11:02:44 -05:00
|
|
|
</div>
|
2017-11-24 11:41:31 -06:00
|
|
|
<div class="recent-topics">
|
2017-08-13 11:02:44 -05:00
|
|
|
<h2 class="recent-topics-title"><%= t 'page_not_found.recent_topics' %></h2>
|
|
|
|
<% @recent.each do |t| %>
|
|
|
|
<div class='not-found-topic'>
|
|
|
|
<%= link_to t.title, t.relative_url %><%= category_badge(t.category) %>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
2018-10-24 15:09:36 -05:00
|
|
|
<a href="<%= path "/latest" %>" class="btn btn-default"><%= t 'page_not_found.see_more' %>…</a>
|
2017-08-13 11:02:44 -05:00
|
|
|
</div>
|
2013-07-11 15:38:46 -05:00
|
|
|
</div>
|
2017-08-13 11:02:44 -05:00
|
|
|
<% end %>
|
2013-07-11 15:38:46 -05:00
|
|
|
|
2018-08-14 20:53:04 -05:00
|
|
|
<%- unless @hide_search%>
|
2014-04-29 14:17:40 -05:00
|
|
|
<div class="row">
|
2017-11-24 11:41:31 -06:00
|
|
|
<div class="page-not-found-search">
|
2014-09-06 03:01:05 -05:00
|
|
|
<h2><%= t 'page_not_found.search_title' %></h2>
|
2014-04-29 14:17:40 -05:00
|
|
|
<p>
|
2018-08-14 20:53:04 -05:00
|
|
|
<form action='/search' id='discourse-search'>
|
2017-06-29 00:37:03 -05:00
|
|
|
<input type="text" name="q" value="<%= @slug %>">
|
2018-08-14 20:53:04 -05:00
|
|
|
<button class="btn btn-primary"><%= t 'page_not_found.search_button' %></button>
|
2014-04-29 14:17:40 -05:00
|
|
|
</form>
|
|
|
|
</p>
|
|
|
|
</div>
|
2013-07-11 15:38:46 -05:00
|
|
|
</div>
|
|
|
|
|
2018-11-15 12:35:38 -06:00
|
|
|
<%= preload_script('onpopstate-handler') %>
|
2014-04-29 14:17:40 -05:00
|
|
|
<%- end %>
|