Update listing.html

remove hard-coded image size
This commit is contained in:
Glenn Sorrentino 2022-04-05 19:21:22 -07:00
parent 5d754f5784
commit c2362f77a7

View file

@ -34,7 +34,7 @@
{% for info in dirs %} {% for info in dirs %}
<div class="d-flex"> <div class="d-flex">
<div> <div>
<img width="30" height="30" title="" alt="" src="{{ static_url_path }}/img/web_folder.png" /> <img title="" alt="" src="{{ static_url_path }}/img/web_folder.png" />
<a href="{{ info.link }}"> <a href="{{ info.link }}">
<span>{{ info.basename }}</span> <span>{{ info.basename }}</span>
</a> </a>
@ -57,4 +57,4 @@
</div> </div>
</body> </body>
</html> </html>