mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
27 lines
960 B
Text
27 lines
960 B
Text
<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='padding: 5px 10px 20px 0'>
|
|
<h2>Most popular topics</h2>
|
|
<% @popular.each do |t| %>
|
|
<a href='<%= t.relative_url %>'><%= t.title %></a><br/>
|
|
<% end %>
|
|
<a href="/popular">See More...</a>
|
|
</td>
|
|
<td style='padding: 5px 0 20px'>
|
|
<h2>Recent topics</h2>
|
|
<% @recent.each do |t| %>
|
|
<a href='<%= t.relative_url %>'><%= t.title %></a><br/>
|
|
<% end %>
|
|
<a href="/popular">See More...</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" value="Search Here" onclick="alert('single page search results not implemented yet');" />
|
|
<input type="submit" value="Search Google" />
|
|
</form>
|
|
</p>
|