aboutsummaryrefslogtreecommitdiff
path: root/bootstrap
diff options
context:
space:
mode:
authorThedro Neely <thedroneely@gmail.com>2021-03-12 17:28:01 -0500
committerThedro Neely <thedroneely@gmail.com>2021-03-12 17:28:01 -0500
commite2afb891cc306175fd24894aa03fa059b16cd201 (patch)
tree8f35710ce34d646d37b012a3a2befdc7c19879e4 /bootstrap
parent87313dd1fc27eefb6df3fbb624752b15b9249fa9 (diff)
downloadthedroneely.com-e2afb891cc306175fd24894aa03fa059b16cd201.tar.gz
thedroneely.com-e2afb891cc306175fd24894aa03fa059b16cd201.tar.bz2
thedroneely.com-e2afb891cc306175fd24894aa03fa059b16cd201.zip
public/css: Create dedicated icons folder
Diffstat (limited to 'bootstrap')
-rw-r--r--bootstrap/Helpers.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstrap/Helpers.php b/bootstrap/Helpers.php
index 7cd590b..76ee478 100644
--- a/bootstrap/Helpers.php
+++ b/bootstrap/Helpers.php
@@ -10,7 +10,7 @@ function icon(string $name, string $class = null)
'<svg', '<svg class="' . $class . '" ',
file_get_contents(
$_SERVER['DOCUMENT_ROOT']
- . '/..' . '/public/css/fonts/feather-icons/' . $name . '.svg'
+ . '/..' . '/public/css/icons/feather/' . $name . '.svg'
)
);
}