1
0
mirror of https://github.com/aquatix/digimarks.git synced 2025-12-06 23:05:10 +01:00

Download and save favicon of the domain of a bookmark

This commit is contained in:
2016-07-19 15:23:20 +02:00
parent 6f7dbeecba
commit 2384d062da
3 changed files with 28 additions and 1 deletions

View File

@@ -29,6 +29,12 @@
<a href="{{ url_for('editbookmark', userkey=userkey, urlhash=bookmark.url_hash) }}">edit</a>
</div>
</div>
<div class="card-action">
{% if bookmark.favicon %}
<img src="{{ url_for('static', filename='favicons/' + bookmark.favicon) }}" />
{% endif %}
<a href="{{ url_for('editbookmark', userkey=userkey, urlhash=bookmark.url_hash) }}">edit</a>
</div>
</div>
</div>
{% endfor %}