diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-02-12 13:08:40 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-02-12 13:08:40 -0800 |
commit | 96ea5526456e681afa27ca7e5fb68ed137f7aae3 (patch) | |
tree | 8b9a136f9cc39f2f48f900689c50494b70b82527 | |
parent | c9d9748cfa62682748d158ac47f6862415ecab94 (diff) | |
download | fatcat-96ea5526456e681afa27ca7e5fb68ed137f7aae3.tar.gz fatcat-96ea5526456e681afa27ca7e5fb68ed137f7aae3.zip |
don't prefix URL with web.archive.org
-rw-r--r-- | python/fatcat_web/templates/release_view.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/fatcat_web/templates/release_view.html b/python/fatcat_web/templates/release_view.html index 8962793a..d5c75895 100644 --- a/python/fatcat_web/templates/release_view.html +++ b/python/fatcat_web/templates/release_view.html @@ -179,7 +179,7 @@ This release citing other releases. <div class="five wide column"> {% if files != [] and files[0].urls != [] %} -<a href="https://web.archive.org/web/1/{{ files[0].urls[0].url }}" class="ui top attached fluid huge green button"><i class="file pdf outline icon"></i>Download Full Text</a> +<a href="{{ files[0].urls[0].url }}" class="ui top attached fluid huge green button"><i class="file pdf outline icon"></i>Download Full Text</a> {% else %} <span class="ui top attached fluid huge grey button"><i class="file cross icon"></i>No Full Text Available</span> {% endif %} |