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

30 lines
1.1 KiB
Plaintext

<p>The page you requested doesn't exist on this discussion forum. Perhaps we can help find it, or another topic like it:</p>
<table>
<tr>
<td style="vertical-align:top; padding:0 20px 20px 0;">
<h2>Most popular topics</h2>
<% @popular.each do |t| %>
<a href='<%= t.relative_url %>'><%= t.title %></a><br/>
<% end %>
<br/>
<a href="/popular" class="btn">See More&hellip;</a>
</td>
<td style="vertical-align:top; padding:0 0 20px 0;">
<h2>Recent topics</h2>
<% @recent.each do |t| %>
<a href='<%= t.relative_url %>'><%= t.title %></a><br/>
<% end %>
<br/>
<a href="/popular" class="btn">See More&hellip;</a>
</td>
</tr>
</table>
<h2>Search for this topic</h2>
<p>
<form action='http://google.com'>
<input type="text" name='q' value="<%= @slug %>">
<!--<input type="button" class="btn" value="Search Here" onclick="alert('single page search results not implemented yet');" />-->
<input type="submit" class="btn btn-primary" value="Search Google" />
</form>
</p>