diff options
author | bnewbold <bnewbold@robocracy.org> | 2019-06-05 23:05:15 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-06-13 14:28:39 -0700 |
commit | 81fc182236a544d16fbbe98836f0d573d6c48d59 (patch) | |
tree | 264652804c78bd5cf4c517f8c2f51571a9fb458d | |
parent | 419e5e312fb854a010febcf153c7b9c35bd3d237 (diff) | |
download | fatcat-81fc182236a544d16fbbe98836f0d573d6c48d59.tar.gz fatcat-81fc182236a544d16fbbe98836f0d573d6c48d59.zip |
release search not found better
-rw-r--r-- | python/fatcat_web/templates/release_search.html | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/python/fatcat_web/templates/release_search.html b/python/fatcat_web/templates/release_search.html index e1e76030..cbb00944 100644 --- a/python/fatcat_web/templates/release_search.html +++ b/python/fatcat_web/templates/release_search.html @@ -21,7 +21,6 @@ </div> <div class="ui container text"> - <br clear="all" /> {% if found %} @@ -105,11 +104,17 @@ <i>Showing top {{ found.count_returned }} out of {{ found.count_found }} results for: <code>{{ found.query.q }}</code></i> {% endif %} {% else %} -<div class="featurette-inner text-center" style="padding-top: 15%;"> - <h3>No results found!</h3> - <i>Query was: <code>{{ found.query.q }}</code></i> - <br/> - <p>Try:</p> + +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="https://ia800105.us.archive.org/20/items/OA-JOURNAL-TESTCRAWL-TWO-2018/papers.gif"> + </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> |