diff --git a/themed/tree_common.html b/themed/tree_common.html index dda53eb..51f7cd2 100644 --- a/themed/tree_common.html +++ b/themed/tree_common.html @@ -17,6 +17,9 @@ {% elif S_ISDIR(mode) %} {# Heroicons solid folder #} + {% elif S_ISLNK(mode) %} + {# Heroicons outline link #} + {% else %} {# Heroicons outline document #} @@ -38,7 +41,7 @@
{# File size #} - {% if !S_ISGITLINK(mode) && !S_ISDIR(mode) %} + {% if !S_ISGITLINK(mode) && !S_ISDIR(mode) && !S_ISLNK(mode) %} {{ size|%ld }} {% endif %}