-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0aba578
commit b943bb6
Showing
4 changed files
with
28 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<% c++ #include "contents/Search.h" %> | ||
<% skin %> | ||
<% view common_search_result uses contents::search::Result extends master %> | ||
<% template title() %><% gt "Research results for: \"{1}\" " using query %><% end template %> | ||
|
||
|
||
<% template main_content() %> | ||
<% include begin_module() %> | ||
<h2><% gt "Research results for \"{1}\"" using query %></h2> | ||
<% include end_module() %> | ||
<% foreach article in articles %> | ||
<% item %> | ||
<% include begin_module() %> | ||
<h3><% include article_link(article) %></h3> | ||
<%= article.content | ext markdown %> | ||
<% include end_module() %> | ||
<% end %> | ||
<% end foreach %> | ||
|
||
<% end template %> | ||
|
||
|
||
|
||
<% end view %> | ||
<% end skin %> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,6 @@ | ||
<% c++ #include "contents/Search.h" %> | ||
<% skin %> | ||
<% view search_result uses contents::search::Result extends master %> | ||
<% template title() %><% gt "Research results for: \"{1}\" " using query %><% end template %> | ||
|
||
|
||
<% template main_content() %> | ||
<% include begin_module() %> | ||
<h2><% gt "Research results for \"{1}\"" using query %></h2> | ||
<% include end_module() %> | ||
<% foreach article in articles %> | ||
<% item %> | ||
<% include begin_module() %> | ||
<h3><% include article_link(article) %></h3> | ||
<%= article.content | ext markdown %> | ||
<% include end_module() %> | ||
<% end %> | ||
<% end foreach %> | ||
|
||
<% end template %> | ||
|
||
|
||
<% view search_result uses contents::search::Result extends common_search_result %> | ||
|
||
<% end view %> | ||
<% end skin %> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,6 @@ | ||
<% c++ #include "contents/Search.h" %> | ||
<% skin %> | ||
<% view search_result uses contents::search::Result extends master %> | ||
<% template title() %><% gt "Research results for: \"{1}\" " using query %><% end template %> | ||
|
||
|
||
<% template main_content() %> | ||
<% include begin_module() %> | ||
<h2><% gt "Research results for \"{1}\"" using query %></h2> | ||
<% include end_module() %> | ||
<% foreach article in articles %> | ||
<% item %> | ||
<% include begin_module() %> | ||
<h3><% include article_link(article) %></h3> | ||
<%= article.content | ext markdown %> | ||
<% include end_module() %> | ||
<% end %> | ||
<% end foreach %> | ||
|
||
<% end template %> | ||
<% view search_result uses contents::search::Result extends common_search_result %> | ||
|
||
<% end view %> | ||
<% end skin %> |