diff options
author | bnewbold <bnewbold@archive.org> | 2020-04-27 18:44:54 +0000 |
---|---|---|
committer | bnewbold <bnewbold@archive.org> | 2020-04-27 18:44:54 +0000 |
commit | 05878da547dc959a2ae70fbb8d55f7a59e66a3f4 (patch) | |
tree | cc3fd27e8c545ba048ac4dcf0fa549a1cbfecf1c /python/fatcat_web/templates/release_search.html | |
parent | 9b4d87a4e20e97fa40c0a4ff37d459628f1978b2 (diff) | |
parent | 0cb1fd066e4bbefce6b9aba4ac29916c37ffd738 (diff) | |
download | fatcat-05878da547dc959a2ae70fbb8d55f7a59e66a3f4.tar.gz fatcat-05878da547dc959a2ae70fbb8d55f7a59e66a3f4.zip |
Merge branch 'bnewbold-search-tweaks' into 'master'
tweaks to search result pages
See merge request webgroup/fatcat!50
Diffstat (limited to 'python/fatcat_web/templates/release_search.html')
-rw-r--r-- | python/fatcat_web/templates/release_search.html | 59 |
1 files changed, 33 insertions, 26 deletions
diff --git a/python/fatcat_web/templates/release_search.html b/python/fatcat_web/templates/release_search.html index 47f4330a..70c46c0a 100644 --- a/python/fatcat_web/templates/release_search.html +++ b/python/fatcat_web/templates/release_search.html @@ -35,37 +35,44 @@ <br> {% if found %} -{% if found.results %} + {% if found.results %} + {{ entity_macros.top_results(found) }} - {% for paper in found.results %} - {{ entity_macros.release_search_result_row(paper) }} -{% endfor %} -{% if found.results|length > 8 %} - <div class="ui divider"></div> - <div style="text-align: center"> - {{ entity_macros.bottom_results(found)}} - </div> -{% endif %} -{% else %} + {% for paper in found.results %} + {{ entity_macros.release_search_result_row(paper) }} + {% endfor %} + + {% if found.results|length > 8 %} + <div class="ui divider"></div> + <div style="text-align: center"> + {{ entity_macros.bottom_results(found, endpoint='release_search') }} + </div> + {% endif %} + + {% else %} -Raw query was: <i>{{ found.query.q }}</i> + Raw query was: <i>{{ found.query.q }}</i> -<div class="ui centered stackable grid" style="padding-top: 15%;"> - <div class="row"> - <div class="four wide column"> - <img src="/static/paper_man_confused.gif" alt="confused paper man"> + <div class="ui centered stackable grid" style="padding-top: 15%;"> + <div class="row"> + <div class="four wide column"> + <img src="/static/paper_man_confused.gif" alt="confused paper man"> + </div> + <div class="six wide column"> + <h2>No results found!</h2> + <p>You could try elsewhere:</p> + <ul> + <li>Search <a href="https://dissem.in/search?q={{ found.query.q | urlencode }}">dissem.in</a></li> + <li>Search <a href="https://www.base-search.net/Search/Results?lookfor={{ found.query.q | urlencode }}">BASE</a></li> + <li>Search <a href="https://scholar.google.com/scholar?q={{ found.query.q | urlencode }}">Google Scholar</a></li> + </ul> + </div> + </div> </div> - <div class="six wide column"> - <h2>No results found!</h2> - <p>You could try elsewhere:</p> - <ul> - <li>Search <a href="https://dissem.in/search?q={{ found.query.q | urlencode }}">dissem.in</a></li> - <li>Search <a href="https://www.base-search.net/Search/Results?lookfor={{ found.query.q | urlencode }}">BASE</a></li> - <li>Search <a href="https://scholar.google.com/scholar?q={{ found.query.q | urlencode }}">Google Scholar</a></li> - </ul> -</div> -{% endif %} + + {% endif %} + {% endif %} </div> |