1+ {% assign ext = include.ext %}
2+ {% assign icon = 'page_white' %}
3+
4+ {% case ext %}
5+ {% comment %} --- Documents & Text --- {% endcomment %}
6+ {% when 'txt','md','log','nfo','err' %}
7+ {% assign icon = 'page_white_text' %}
8+ {% when 'pdf' %}
9+ {% assign icon = 'page_white_acrobat' %}
10+ {% when 'doc','docx','rtf','odt' %}
11+ {% assign icon = 'page_white_word' %}
12+ {% when 'xls','xlsx','csv','ods','tsv' %}
13+ {% assign icon = 'page_white_excel' %}
14+ {% when 'ppt','pptx','pps','odp' %}
15+ {% assign icon = 'page_white_powerpoint' %}
16+ {% when 'epub','mobi','azw','cbz','cbr' %}
17+ {% assign icon = 'book' %}
18+
19+ {% comment %} --- Images & Design --- {% endcomment %}
20+ {% when 'jpg','jpeg','png','gif','bmp','webp','ico','tiff','tif' %}
21+ {% assign icon = 'page_white_picture' %}
22+ {% when 'svg','eps','ai','cdr' %}
23+ {% assign icon = 'page_white_vector' %}
24+ {% when 'psd','xcf' %}
25+ {% assign icon = 'page_white_paint' %}
26+ {% when 'swf' %}
27+ {% assign icon = 'page_white_flash' %}
28+
29+ {% comment %} --- Web & Code --- {% endcomment %}
30+ {% when 'html','htm','shtml','xhtml' %}
31+ {% assign icon = 'page_white_code' %}
32+ {% when 'css','less','sass','scss' %}
33+ {% assign icon = 'page_white_code' %}
34+ {% when 'js','ts','jsx','tsx','json','xml','yaml','yml' %}
35+ {% assign icon = 'page_white_code' %}
36+ {% when 'php','phtml' %}
37+ {% assign icon = 'page_white_php' %}
38+ {% when 'rb' %}
39+ {% assign icon = 'page_white_ruby' %}
40+ {% when 'c','h' %}
41+ {% assign icon = 'page_white_c' %}
42+ {% when 'cpp','cc','cxx','hpp' %}
43+ {% assign icon = 'page_white_cplusplus' %}
44+ {% when 'cs' %}
45+ {% assign icon = 'page_white_csharp' %}
46+ {% when 'java','class','jar' %}
47+ {% assign icon = 'page_white_cup' %}
48+ {% when 'sln','csproj','vbproj','vb' %}
49+ {% assign icon = 'page_white_visualstudio' %}
50+ {% when 'as' %}
51+ {% assign icon = 'page_white_actionscript' %}
52+ {% when 'cfm','cfc' %}
53+ {% assign icon = 'page_white_coldfusion' %}
54+
55+ {% comment %} --- System, Executables & Configs --- {% endcomment %}
56+ {% when 'exe','msi','bat','cmd','ps1','reg' %}
57+ {% assign icon = 'application_xp' %}
58+ {% when 'dmg','app','pkg','command' %}
59+ {% assign icon = 'application_osx' %}
60+ {% when 'sh','bash','zsh' %}
61+ {% assign icon = 'page_white_tux' %}
62+ {% when 'dll','sys','so','dylib','ini','conf','cfg','env' %}
63+ {% assign icon = 'page_white_gear' %}
64+
65+ {% comment %} --- Archives & Disk Images --- {% endcomment %}
66+ {% when 'zip' %}
67+ {% assign icon = 'page_white_zip' %}
68+ {% when 'tar','gz','rar','7z','bz2','xz' %}
69+ {% assign icon = 'page_white_compressed' %}
70+ {% when 'iso','img','vdi','vmdk','qcow2','cue','mds' %}
71+ {% assign icon = 'page_white_cd' %}
72+ {% when 'vob','ifo' %}
73+ {% assign icon = 'page_white_dvd' %}
74+
75+ {% comment %} --- Audio & Video --- {% endcomment %}
76+ {% when 'mp3','wav','flac','ogg','m4a','wma','aac','mid','midi' %}
77+ {% assign icon = 'music' %}
78+ {% when 'mp4','avi','mkv','mov','wmv','webm','m4v','flv' %}
79+ {% assign icon = 'film' %}
80+
81+ {% comment %} --- Databases --- {% endcomment %}
82+ {% when 'sql','db','sqlite','sqlite3','mdb','accdb','frm','ibd' %}
83+ {% assign icon = 'page_white_database' %}
84+
85+ {% comment %} --- Misc Useful Types --- {% endcomment %}
86+ {% when 'ttf','otf','woff','woff2','eot' %}
87+ {% assign icon = 'font' %}
88+ {% when 'vcf' %}
89+ {% assign icon = 'vcard' %}
90+ {% when 'ics' %}
91+ {% assign icon = 'calendar' %}
92+ {% when 'rss','atom' %}
93+ {% assign icon = 'feed' %}
94+ {% endcase %}
95+ {{- icon -}}
0 commit comments