mirror of
https://github.com/ArchiveBox/ArchiveBox
synced 2024-11-23 12:43:10 +00:00
37 lines
2.1 KiB
HTML
37 lines
2.1 KiB
HTML
{% load static %}
|
|
|
|
<tr>
|
|
<td title="{{link.timestamp}}"> {% if link.bookmarked_date %} {{ link.bookmarked_date }} {% else %} {{ link.added }} {% endif %} </td>
|
|
<td class="title-col" style="opacity: {% if link.title %}1{% else %}0.3{% endif %}">
|
|
{% if link.is_archived %}
|
|
<a href="archive/{{link.timestamp}}/index.html"><img src="archive/{{link.timestamp}}/favicon.ico" onerror="this.style.display='none'" class="link-favicon" decoding="async"></a>
|
|
{% else %}
|
|
<a href="archive/{{link.timestamp}}/index.html"><img src="{% static 'spinner.gif' %}" onerror="this.style.display='none'" class="link-favicon" decoding="async" style="height: 15px"></a>
|
|
{% endif %}
|
|
|
|
<a href="archive/{{link.timestamp}}/index.html" title="{{link.title|default:'Not yet archived...'}}">
|
|
<span data-title-for="{{link.url}}" data-archived="{{link.is_archived}}">{{link.title|default:'Loading...'|truncatechars:128}}</span>
|
|
{% if link.tags_str %}
|
|
<span class="tags" style="float: right; border-radius: 5px; background-color: #bfdfff; padding: 2px 5px; margin-left: 4px; margin-top: 1px;">
|
|
{% if link.tags_str != None %}
|
|
{{link.tags_str|default:''}}
|
|
{% else %}
|
|
{{ link.tags|default:'' }}
|
|
{% endif %}
|
|
</span>
|
|
{% endif %}
|
|
</a>
|
|
</td>
|
|
<td>
|
|
<span data-number-for="{{link.url}}" title="Fetching any missing files...">
|
|
{% if link.icons %}
|
|
{{link.icons}} <small style="float:right; opacity: 0.5">{{link.num_outputs}}</small>
|
|
{% else %}
|
|
<a href="archive/{{link.timestamp}}/index.html">📄
|
|
{{link.num_outputs}} <img src="{% static 'spinner.gif' %}" onerror="this.style.display='none'" class="files-spinner" decoding="async" style="height: 15px"/>
|
|
</a>
|
|
{% endif %}
|
|
</span>
|
|
</td>
|
|
<td style="text-align:left; word-wrap: anywhere;"><a href="{{link.url}}">{{link.url|truncatechars:128}}</a></td>
|
|
</tr>
|