{% set entity = webcapture %} {% import "entity_macros.html" as entity_macros %} {% extends "base.html" %} {% block fullbody %}

{% if webcapture.original_url %} {{ webcapture.original_url }} {% endif %}
webcapture {{ webcapture.ident }}

{% if entity.extra %} {{ entity_macros.extra_metadata(entity.extra) }} {% endif %}

Releases

{% if entity.releases != [] %} {{ entity_macros.release_list(entity.releases) }} {% else %}

This Web Capture is not associated with any fatcat release. {% endif %}

CDX Rows ({{ webcapture.cdx|count }})

{% if webcapture.cdx %}
{% for row in webcapture.cdx %}
{{ row.timestamp }} {% if row.mimetype %}| {{ row.mimetype }}{% endif %}
{% if row.sha1 %}sha1:{{ row.sha1 }}
{% endif %} {% if row.sha256 %}sha256:{{ row.sha256 }}
{% endif %}
{% endfor %}
{% else %} This File Set is empty (contains no files). {% endif %}

Archive URLs

{% if webcapture.archive_urls != None %} {{ entity_macros.url_list(webcapture.archive_urls) }} {% else %} No known public archive for this webcapture. {% endif %}
{% if webcapture.timestamp != None %}

Capture Time  {{ webcapture.timestamp }}

{% endif %} {{ entity_macros.fatcat_bits(entity, "webcapture", "") }}
{% endblock %}