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

46 lines
1.6 KiB
Plaintext
Raw Normal View History

2013-02-13 04:05:35 -05:00
<% local_domain = "#{request.protocol}#{request.host_with_port}" %>
<h1 class="page-not-found"><%= t 'page_not_found.title' %></h1>
2014-06-24 19:47:12 -04:00
<div class="row page-not-found-topics">
<div class="span8 pupular-topics">
<h2 class="popular-topics-title"><%= t 'page_not_found.popular_topics' %></h2>
<% @top_viewed.each do |t| %>
<%= link_to t.title, t.relative_url %><br/>
<% end %>
<br/>
<a href="/latest" class="btn"><%= t 'page_not_found.see_more' %>&hellip;</a>
</div>
2014-06-24 19:47:12 -04:00
<div class="span8 recent-topics">
<h2 class="recent-topics-title"><%= t 'page_not_found.recent_topics' %></h2>
<% @recent.each do |t| %>
<%= link_to t.title, t.relative_url %><br/>
<% end %>
<br/>
<a href="/latest" class="btn"><%= t 'page_not_found.see_more' %>&hellip;</a>
</div>
</div>
2014-04-29 15:17:40 -04:00
<%- unless @hide_google %>
<div class="row">
<div class="span10" style='padding-top: 20px'>
<h2 class="page-not-found-search"><%= t 'page_not_found.search_title' %></h2>
<p>
<form action='//google.com' id='google-search' onsubmit="return google_button_clicked()">
<input type="text" id='user-query' value="<%= @slug %>">
<input type='hidden' id='google-query' name="q">
<button class="btn btn-primary"><%= t 'page_not_found.search_google' %></button>
</form>
</p>
</div>
</div>
2014-04-29 15:17:40 -04:00
<script language="Javascript">
function google_button_clicked(e) {
var searchValue = document.getElementById('user-query').value;
document.getElementById('google-query').value = 'site:<%= local_domain %> ' + searchValue;
return true;
}
</script>
<%- end %>