mirror of
https://github.com/discourse/discourse.git
synced 2025-01-30 05:05:15 +08:00
fix spaces and use link_to instead of <a> tags
This commit is contained in:
parent
d81cd6eb80
commit
105ae2a174
|
@ -2,30 +2,30 @@
|
|||
|
||||
<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>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…</a>
|
||||
<tr>
|
||||
<td style="vertical-align:top; padding:0 20px 20px 0;">
|
||||
<h2>Popular topics</h2>
|
||||
<% @popular.each do |t| %>
|
||||
<%= link_to t.title, t.relative_url %><br/>
|
||||
<% end %>
|
||||
<br/>
|
||||
<a href="/popular" class="btn">See More…</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…</a>
|
||||
<td style="vertical-align:top; padding:0 0 20px 0;">
|
||||
<h2>Recent topics</h2>
|
||||
<% @recent.each do |t| %>
|
||||
<%= link_to t.title, t.relative_url %><br/>
|
||||
<% end %>
|
||||
<br/>
|
||||
<a href="/popular" class="btn">See More…</a>
|
||||
</td>
|
||||
</tr>
|
||||
</tr>
|
||||
</table>
|
||||
<h2>Search for this topic</h2>
|
||||
<p>
|
||||
<form action='http://google.com'>
|
||||
<form action='http://google.com'>
|
||||
<input type="text" name='q' value="site:<%= local_domain %> <%= @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>
|
||||
</form>
|
||||
</p>
|
||||
|
|
Loading…
Reference in New Issue
Block a user