diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2022-02-08 19:02:34 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2022-02-09 17:35:50 -0800 |
commit | 6976b6868cdf0628aa79d47aab4e889a9ccfc0dc (patch) | |
tree | 8f98a95d915af0bbac6035f9909516edc69ec39a /python/fatcat_web/templates/entity_macros.html | |
parent | 3e67a62ea11a9f8cd8c9f21e1019150d9ecca3b0 (diff) | |
download | fatcat-6976b6868cdf0628aa79d47aab4e889a9ccfc0dc.tar.gz fatcat-6976b6868cdf0628aa79d47aab4e889a9ccfc0dc.zip |
container SERP: fix layout on mobile
Diffstat (limited to 'python/fatcat_web/templates/entity_macros.html')
-rw-r--r-- | python/fatcat_web/templates/entity_macros.html | 109 |
1 files changed, 56 insertions, 53 deletions
diff --git a/python/fatcat_web/templates/entity_macros.html b/python/fatcat_web/templates/entity_macros.html index b801f3c5..6ad63a14 100644 --- a/python/fatcat_web/templates/entity_macros.html +++ b/python/fatcat_web/templates/entity_macros.html @@ -268,9 +268,63 @@ {% macro container_search_result_row(entity, show_stats=False) -%} - <div> + <div class="ui stackable doubling grid"> + <div class="twelve wide column"> + <h4 style="margin-bottom: 0em; font-size: 1.1em;"> + <a href="/container/{{ entity.ident }}" style="color: #2224c7;">{{ entity['name'] }}</a> + </h4> + {% if entity.original_name %} + <i>{{ entity.original_name }}</i></br> + {% endif %} + {% if entity.publisher %} + <a href="/container/search?q=publisher:%22{{ entity.publisher }}%22" style="color: black; margin-top: 0em;">{{ entity.publisher }}</a> + <br> + {% endif %} + {% if entity.issnl %} + <a href="https://portal.issn.org/resource/ISSN/{{ entity.issnl }}" style="color: green;">issnl:{{ entity.issnl }}</a> + {% endif %} + {% if entity.wikidata_qid %} + <a href="https://wikidata.org/wiki/{{ entity.wikidata_qid }}" style="color: green;">wikidata:{{ entity.wikidata_qid }}</a> + {% endif %} + {% if entity.dblp_prefix %} + <a href="https://dblp.org/db/{{ entity.dblp_prefix }}/index.html" style="color: green;">dblp:{{ entity.dblp_prefix }}</a> + {% endif %} + {% if entity.ia_sim_collection %} + <a href="https://archive.org/details/{{ entity.ia_sim_collection }}" style="color: green;">[archive.org]</a> + {% elif entity.sim_pubid %} + <a href="https://archive.org/search.php?query=sim_pubid%3A{{ entity.sim_pubid }}%20mediatype%3Acollection" style="color: green;">[archive.org]</a> + {% endif %} + {# too much clutter + {% if entity.country_code %} + <span style="color: black;">country:{{ entity.country_code }}</span> + {% endif %} + {% for lang in entity.languages %} + <span style="color: black;">lang:{{ lang }}</span> + {% endfor %} + {% if entity.any_kbart %} + <span style="color: black;">[KBART]</span> + {% endif %} + <br> + #} + {% if entity.in_doaj %} + <span style="color: #c54e00;">[DOAJ]</span> + {% endif %} + {% if entity.in_road %} + <span style="color: #c54e00;">[ROAD]</span> + {% endif %} + {% if entity.is_oa and not (entity.in_doaj or entity.in_road) %} + <span style="color: #c54e00;">[open-access]</span> + {% endif %} + {% if entity.container_type and entity.container_type != "journal" %} + <b>[{{ entity.container_type }}]</b> + {% endif %} + {% if entity.publication_status and entity.publication_status != "active" %} + <span style="color: brown;">{{ entity.publication_status }}</span> + {% endif %} + </div> + {% if show_stats %} - <div style="float: right; margin-left: 0.5em; margin-top:0px; width: 150px; text-align: right;"> + <div class="four wide right aligned column"> {% if entity.releases_total %} <b>~{{ "{:,}".format(entity.releases_total) }}</b> releases {% elif entity.releases_total == 0 %} @@ -281,57 +335,6 @@ {% endif %} </div> {% endif %} - <h4 style="margin-top: 1em; margin-bottom: 0em; font-size: 1.1em;"> - <a href="/container/{{ entity.ident }}" style="color: #2224c7;">{{ entity['name'] }}</a> - </h4> - {% if entity.original_name %} - <i>{{ entity.original_name }}</i></br> - {% endif %} - {% if entity.publisher %} - <a href="/container/search?q=publisher:%22{{ entity.publisher }}%22" style="color: black; margin-top: 0em;">{{ entity.publisher }}</a> - <br> - {% endif %} - {% if entity.issnl %} - <a href="https://portal.issn.org/resource/ISSN/{{ entity.issnl }}" style="color: green;">issnl:{{ entity.issnl }}</a> - {% endif %} - {% if entity.wikidata_qid %} - <a href="https://wikidata.org/wiki/{{ entity.wikidata_qid }}" style="color: green;">wikidata:{{ entity.wikidata_qid }}</a> - {% endif %} - {% if entity.dblp_prefix %} - <a href="https://dblp.org/db/{{ entity.dblp_prefix }}/index.html" style="color: green;">dblp:{{ entity.dblp_prefix }}</a> - {% endif %} - {% if entity.ia_sim_collection %} - <a href="https://archive.org/details/{{ entity.ia_sim_collection }}" style="color: green;">[archive.org]</a> - {% elif entity.sim_pubid %} - <a href="https://archive.org/search.php?query=sim_pubid%3A{{ entity.sim_pubid }}%20mediatype%3Acollection" style="color: green;">[archive.org]</a> - {% endif %} - {# too much clutter - {% if entity.country_code %} - <span style="color: black;">country:{{ entity.country_code }}</span> - {% endif %} - {% for lang in entity.languages %} - <span style="color: black;">lang:{{ lang }}</span> - {% endfor %} - {% if entity.any_kbart %} - <span style="color: black;">[KBART]</span> - {% endif %} - <br> - #} - {% if entity.in_doaj %} - <span style="color: #c54e00;">[DOAJ]</span> - {% endif %} - {% if entity.in_road %} - <span style="color: #c54e00;">[ROAD]</span> - {% endif %} - {% if entity.is_oa and not (entity.in_doaj or entity.in_road) %} - <span style="color: #c54e00;">[open-access]</span> - {% endif %} - {% if entity.container_type and entity.container_type != "journal" %} - <b>[{{ entity.container_type }}]</b> - {% endif %} - {% if entity.publication_status and entity.publication_status != "active" %} - <span style="color: brown;">{{ entity.publication_status }}</span> - {% endif %} </div> {% endmacro %} |