Browse Source

fixed deleted.png image not found on the front end

main
Thalis 7 years ago
committed by GitHub
parent
commit
0b84fc26d6
  1. 2
      templates/post/fileinfo.html

2
templates/post/fileinfo.html

@ -5,7 +5,7 @@
{% for file in post.files %}
<div class="file{% if post.num_files > 1 %} multifile" style="width:{{ file.thumbwidth + 40 }}px"{% else %}"{% endif %}>
{% if file.file == 'deleted' %}
<img class="post-image deleted" src="{{ config.image_deleted }}" alt="" />
<img class="post-image deleted" src="{{ config.root }}{{ config.image_deleted }}" alt="" />
{% else %}
<p class="fileinfo">File: <a href="{{ config.uri_img }}{{ file.file }}">{{ file.file }}</a> <span class="unimportant">
(

Loading…
Cancel
Save