blob: ee28cdf9e0726f3c96c0a92b9cc2692b4a842d5b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
{% set entity = webcapture %}
{% import "entity_macros.html" as entity_macros %}
{% extends "base.html" %}
{% block fullbody %}
<div class="ui stackable mobile reversed grid centered">
<div class="one wide column"></div>
<div class="fifteen wide column">
<h1 class="ui header">
{% if webcapture.original_url %}
<a href="{{ webcapture.original_url }}" style="color: black;"><code>{{ webcapture.original_url }}</code></a>
{% endif %}
<span class="sub header"><code>webcapture {{ webcapture.ident }}</code></span></h1>
</div>
</div>
<div class="ui stackable mobile reversed grid centered">
<div class="one wide column"></div>
<div class="ten wide column" style="font-size: 16px;">
{% if entity.extra %}
{{ entity_macros.extra_metadata(entity.extra) }}
{% endif %}
<h3>Releases</h3>
{% if entity.releases != [] %}
{{ entity_macros.release_list(entity.releases) }}
{% else %}
<p>
This Web Capture is not associated with any fatcat release.
{% endif %}
<br>
<h3>Archive URLs</h3>
{% if webcapture.archive_urls != None %}
{{ entity_macros.url_list(webcapture.archive_urls, webcapture.wayback_suffix) }}
{% else %}
No known public archive for this webcapture.
{% endif %}
<h3>CDX Rows ({{ webcapture.cdx|count }})</h3>
{% if webcapture.cdx %}
<div class="ui celled list">
{% for row in webcapture.cdx %}
<div class="item">
<div class="content">
<div class="header">
<code><a href="{{ row.url }}">{{ row.url}}</a></code>
</div>
<div style="margin-left: 1em;">
{{ row.timestamp.strftime("%Y-%m-%d %H:%M:%S") }}
{% if row.mimetype %}| {{ row.mimetype }}{% endif %}
<br>
<code><small style="color: #666;">
{% if row.sha1 %}sha1:{{ row.sha1 }}<br>{% endif %}
{% if row.sha256 %}sha256:{{ row.sha256 }}<br>{% endif %}
</small></code>
</div>
</div>
</div>
{% endfor %}
</div>
{% else %}
This web capture is empty (contains no resources).
{% endif %}
</div>
<div class="five wide column">
{% if webcapture.timestamp != None %}
<div class="ui segment attached">
<p><b>Capture Time</b> {{ webcapture.timestamp.strftime("%Y-%m-%d %H:%M:%S") }}
</div>
{% endif %}
{{ entity_macros.fatcat_bits(entity, "webcapture", "") }}
</div>
</div>
{% endblock %}
|