aboutsummaryrefslogtreecommitdiffstats
path: root/fatcat_scholar/templates/search_macros.html
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@archive.org>2021-01-15 03:48:08 -0800
committerBryan Newbold <bnewbold@archive.org>2021-01-19 19:49:39 -0800
commit4dd3dd3fb3f4444c4866e8b626ff8f00d628b4ce (patch)
treec7a458d53533ba2d45a610086782b457e7c3266d /fatcat_scholar/templates/search_macros.html
parent99322fa9d17621b9d60e5967d068ddccc01e21f9 (diff)
downloadfatcat-scholar-4dd3dd3fb3f4444c4866e8b626ff8f00d628b4ce.tar.gz
fatcat-scholar-4dd3dd3fb3f4444c4866e8b626ff8f00d628b4ce.zip
html: tweaks to modal pop-ups
Diffstat (limited to 'fatcat_scholar/templates/search_macros.html')
-rw-r--r--fatcat_scholar/templates/search_macros.html16
1 files changed, 13 insertions, 3 deletions
diff --git a/fatcat_scholar/templates/search_macros.html b/fatcat_scholar/templates/search_macros.html
index c26ce7b..4ef9c48 100644
--- a/fatcat_scholar/templates/search_macros.html
+++ b/fatcat_scholar/templates/search_macros.html
@@ -226,7 +226,7 @@
{% else %}
Other
{% endif %}
- {% if paper.fulltext.thumbnail_url %}
+ {% if paper.fulltext and paper.fulltext.thumbnail_url %}
<div class="menu" style="left: -110%; margin-top: -2.5em;">
<img src="{{ paper.fulltext.thumbnail_url }}" alt="fulltext thumbnail">
</div>
@@ -261,7 +261,7 @@
{% elif paper.biblio.doi_prefix in ["10.1080"] %}
tandfonline.com
{% else %}
- Publisher (DOI)
+ Publisher DOI
{% endif %}
</button>
</a>
@@ -322,6 +322,9 @@
{# ### CITATION MODAL #}
{% if paper.doc_type == "work" %}
<dialog id="cite-modal-{{ paper.key }}">
+ <button class="circular ui right floated compact basic icon button" onclick="this.parentElement.close()">
+ <i class="close icon"></i>
+ </button>
<h2>{% trans %}Cite Work{% endtrans %}</h2>
<table class="ui very basic table">
<tbody>
@@ -340,8 +343,12 @@
{# ### VERSIONS MODAL #}
<dialog id="access-modal-{{ paper.key }}">
+ <button class="circular ui right floated compact basic icon button" onclick="this.parentElement.close()">
+ <i class="close icon"></i>
+ </button>
+
<h2>{% trans %}Access Options{% endtrans %}</h2>
- {% if paper.fulltext.thumbnail_url %}
+ {% if paper.fulltext and paper.fulltext.thumbnail_url %}
<a href="{{ paper.fulltext.access_url }}">
<img src="{{ paper.fulltext.thumbnail_url }}" alt="fulltext thumbnail">
</a>
@@ -358,6 +365,9 @@
<p>Some other <a href="{{ access.access_url }}">access here</a>.
{% endif %}
{% endfor %}
+ {% if paper.biblio.doi %}
+ <p>You can visit the publisher <a href="{{ paper.biblio.doi }}">landing page</a>.
+ {% endif %}
{% if paper.releases|length > 1 %}
<h2>All Versions</h2>