diff options
| -rw-r--r-- | python/fatcat/templates/file_view.html | 4 | ||||
| -rw-r--r-- | python/fatcat/templates/release_view.html | 4 | 
2 files changed, 4 insertions, 4 deletions
diff --git a/python/fatcat/templates/file_view.html b/python/fatcat/templates/file_view.html index c125eff5..7f6cc143 100644 --- a/python/fatcat/templates/file_view.html +++ b/python/fatcat/templates/file_view.html @@ -35,7 +35,7 @@ This file is not associated with any fatcat release.  <p>Known locations of this file:  <ul>    <li><a href="{{ file.url }}">{{ file.url.split('/')[2] }}</a> -      (<a href="https://web.archive.org/web/2/{{ file.url }}">Wayback mirror</a>) +      (<a href="https://web.archive.org/web/1/{{ file.url }}">Wayback mirror</a>)  </ul>  {% else %}  No known public URL, mirror, or archive for this file. @@ -70,7 +70,7 @@ Raw Object:  <div class="five wide column">  {% if file.url != None %} -<a href="https://web.archive.org/web/2/{{ file.url }}" class="ui top attached fluid huge green button"><i class="file icon"></i>Download File</a> +<a href="https://web.archive.org/web/1/{{ file.url }}" class="ui top attached fluid huge green button"><i class="file icon"></i>Download File</a>  {% else %}  <span class="ui top attached fluid huge grey button"><i class="file cross icon"></i>No Download Available</span>  {% endif %} diff --git a/python/fatcat/templates/release_view.html b/python/fatcat/templates/release_view.html index 03cd7b93..14889244 100644 --- a/python/fatcat/templates/release_view.html +++ b/python/fatcat/templates/release_view.html @@ -82,7 +82,7 @@ Believed to represent this release...        <td>{{ file.size }}        <td>{{ file.mimetype }}        <td><a href="{{ file.url }}">{{ file.url.split('/')[2] }}</a> -          <br><a href="https://web.archive.org/web/2/{{ file.url }}">web.archive.org</a> +          <br><a href="https://web.archive.org/web/1/{{ file.url }}">web.archive.org</a>    {% endfor %}    </tbody>  </table> @@ -137,7 +137,7 @@ This release citing other releases.  <div class="five wide column">  {% if files != [] and files[0].url != None %} -<a href="https://web.archive.org/web/2/{{ files[0].url }}" class="ui top attached fluid huge green button"><i class="file pdf outline icon"></i>Download Full Text</a> +<a href="https://web.archive.org/web/1/{{ files[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 %}  | 
