2013-02-13 04:05:35 -05:00
|
|
|
<% local_domain = "#{request.protocol}#{request.host_with_port}" %>
|
|
|
|
|
2013-02-22 06:33:35 -05:00
|
|
|
<p><%= t 'page_not_found.title' %></p>
|
2013-02-05 14:16:51 -05:00
|
|
|
<table>
|
2013-02-20 03:08:22 -05:00
|
|
|
<tr>
|
|
|
|
<td style="vertical-align:top; padding:0 20px 20px 0;">
|
2013-02-22 06:33:35 -05:00
|
|
|
<h2><%= t 'page_not_found.popular_topics' %></h2>
|
2013-02-20 03:08:22 -05:00
|
|
|
<% @popular.each do |t| %>
|
|
|
|
<%= link_to t.title, t.relative_url %><br/>
|
|
|
|
<% end %>
|
|
|
|
<br/>
|
2013-02-22 06:33:35 -05:00
|
|
|
<a href="/popular" class="btn"><%= t 'page_not_found.see_more' %>…</a>
|
2013-02-05 14:16:51 -05:00
|
|
|
</td>
|
2013-02-20 03:08:22 -05:00
|
|
|
<td style="vertical-align:top; padding:0 0 20px 0;">
|
2013-02-22 06:33:35 -05:00
|
|
|
<h2><%= t 'page_not_found.recent_topics' %></h2>
|
2013-02-20 03:08:22 -05:00
|
|
|
<% @recent.each do |t| %>
|
|
|
|
<%= link_to t.title, t.relative_url %><br/>
|
|
|
|
<% end %>
|
|
|
|
<br/>
|
2013-02-27 19:48:53 -05:00
|
|
|
<a href="/new" class="btn"><%= t 'page_not_found.see_more' %>…</a>
|
2013-02-05 14:16:51 -05:00
|
|
|
</td>
|
2013-02-20 03:08:22 -05:00
|
|
|
</tr>
|
2013-02-05 14:16:51 -05:00
|
|
|
</table>
|
2013-02-22 06:33:35 -05:00
|
|
|
<h2><%= t 'page_not_found.search_title' %></h2>
|
2013-02-05 14:16:51 -05:00
|
|
|
<p>
|
2013-02-20 03:08:22 -05:00
|
|
|
<form action='http://google.com'>
|
2013-02-13 04:05:35 -05:00
|
|
|
<input type="text" name='q' value="site:<%= local_domain %> <%= @slug %>">
|
2013-02-13 03:25:27 -05:00
|
|
|
<!--<input type="button" class="btn" value="Search Here" onclick="alert('single page search results not implemented yet');" />-->
|
2013-02-22 06:33:35 -05:00
|
|
|
<input type="submit" class="btn btn-primary" value="<%= t 'page_not_found.search_google' %>" />
|
2013-02-20 03:08:22 -05:00
|
|
|
</form>
|
2013-02-05 14:16:51 -05:00
|
|
|
</p>
|