discourse/app/views/exceptions/not_found.html.erb

43 lines
1.5 KiB
Plaintext
Raw Normal View History

<h1 class="page-not-found"><%= t 'page_not_found.title' %></h1>
<%= build_plugin_html 'server:not-found-before-topics' %>
2017-11-14 11:57:17 -05:00
<% unless SiteSetting.login_required? && current_user.nil? %>
<div class="row page-not-found-topics">
2017-11-24 12:41:31 -05:00
<div class="popular-topics">
<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 %>
<a href="<%= path "/top" %>" class="btn btn-default"><%= t 'page_not_found.see_more' %>&hellip;</a>
</div>
2017-11-24 12:41:31 -05:00
<div class="recent-topics">
<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 %>
<a href="<%= path "/latest" %>" class="btn btn-default"><%= t 'page_not_found.see_more' %>&hellip;</a>
</div>
</div>
<% end %>
<%- unless @hide_search%>
2014-04-29 15:17:40 -04:00
<div class="row">
2017-11-24 12:41:31 -05:00
<div class="page-not-found-search">
2014-09-06 04:01:05 -04:00
<h2><%= t 'page_not_found.search_title' %></h2>
2014-04-29 15:17:40 -04:00
<p>
<form action='/search' id='discourse-search'>
<input type="text" name="q" value="<%= @slug %>">
<button class="btn btn-primary"><%= t 'page_not_found.search_button' %></button>
2014-04-29 15:17:40 -04:00
</form>
</p>
</div>
</div>
<%= preload_script('onpopstate-handler') %>
2014-04-29 15:17:40 -04:00
<%- end %>