2014-02-24 09:47:44 +08:00
|
|
|
<h1 class="page-not-found"><%= t 'page_not_found.title' %></h1>
|
2013-07-12 04:38:46 +08:00
|
|
|
|
2017-11-15 05:31:44 +08:00
|
|
|
<%= build_plugin_html 'server:not-found-before-topics' %>
|
2017-11-15 00:57:17 +08:00
|
|
|
|
2017-08-14 00:02:44 +08:00
|
|
|
<% unless SiteSetting.login_required? && current_user.nil? %>
|
|
|
|
<div class="row page-not-found-topics">
|
2017-11-25 01:41:31 +08:00
|
|
|
<div class="popular-topics">
|
2017-08-14 00:02:44 +08: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 %>
|
|
|
|
<a href="<%= path "/top" %>" class="btn"><%= t 'page_not_found.see_more' %>…</a>
|
|
|
|
</div>
|
2017-11-25 01:41:31 +08:00
|
|
|
<div class="recent-topics">
|
2017-08-14 00:02:44 +08: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 %>
|
|
|
|
<a href="<%= path "/latest" %>" class="btn"><%= t 'page_not_found.see_more' %>…</a>
|
|
|
|
</div>
|
2013-07-12 04:38:46 +08:00
|
|
|
</div>
|
2017-08-14 00:02:44 +08:00
|
|
|
<% end %>
|
2013-07-12 04:38:46 +08:00
|
|
|
|
2014-04-30 03:17:40 +08:00
|
|
|
<%- unless @hide_google %>
|
|
|
|
<div class="row">
|
2017-11-25 01:41:31 +08:00
|
|
|
<div class="page-not-found-search">
|
2014-09-06 16:01:05 +08:00
|
|
|
<h2><%= t 'page_not_found.search_title' %></h2>
|
2014-04-30 03:17:40 +08:00
|
|
|
<p>
|
2017-06-29 13:37:03 +08:00
|
|
|
<form action='//google.com/search' id='google-search'>
|
|
|
|
<input type="text" name="q" value="<%= @slug %>">
|
2018-08-14 04:44:35 +08:00
|
|
|
<input type='hidden' name="as_sitesearch" value="<%= Discourse.base_url %>">
|
2014-04-30 03:17:40 +08:00
|
|
|
<button class="btn btn-primary"><%= t 'page_not_found.search_google' %></button>
|
|
|
|
</form>
|
|
|
|
</p>
|
|
|
|
</div>
|
2013-07-12 04:38:46 +08:00
|
|
|
</div>
|
|
|
|
|
2014-04-30 03:17:40 +08:00
|
|
|
<script language="Javascript">
|
2014-10-16 02:42:18 +08:00
|
|
|
window.onpopstate = function(event) {
|
2014-12-19 23:56:19 +08:00
|
|
|
if (event.state && !window.hasOwnProperty("Discourse")) { //check if Discourse object exists if not take care of back navigation
|
2014-10-16 02:42:18 +08:00
|
|
|
window.location = document.location;
|
|
|
|
}
|
|
|
|
};
|
2014-04-30 03:17:40 +08:00
|
|
|
</script>
|
|
|
|
<%- end %>
|