aboutsummaryrefslogtreecommitdiff
path: root/app/views/partials
diff options
context:
space:
mode:
authorThedro Neely <thedroneely@gmail.com>2021-03-12 17:19:38 -0500
committerThedro Neely <thedroneely@gmail.com>2021-03-12 17:19:38 -0500
commit87313dd1fc27eefb6df3fbb624752b15b9249fa9 (patch)
tree73494ff90414c8d6aac07dfd25839260b1429663 /app/views/partials
parent58d37050e521de397c9c90c87deafd5de7022473 (diff)
downloadthedroneely.com-87313dd1fc27eefb6df3fbb624752b15b9249fa9.tar.gz
thedroneely.com-87313dd1fc27eefb6df3fbb624752b15b9249fa9.tar.bz2
thedroneely.com-87313dd1fc27eefb6df3fbb624752b15b9249fa9.zip
bootstrap/Helpers: Function name change featherIcon -> icon
Diffstat (limited to 'app/views/partials')
-rw-r--r--app/views/partials/navigator.php14
1 files changed, 7 insertions, 7 deletions
diff --git a/app/views/partials/navigator.php b/app/views/partials/navigator.php
index e3adf58..4c5b765 100644
--- a/app/views/partials/navigator.php
+++ b/app/views/partials/navigator.php
@@ -8,7 +8,7 @@
<a href="/" class="navbar-item navbar__icon
<?php echo $check = $navigation->isActiveHome() ? 'navbar__active' : ''; ?>">
<div class="has-text-centered">
- <?php echo featherIcon('user'); ?>
+ <?php echo icon('user'); ?>
<p class="is-size-7 navbar__icon__align">Home</p>
</div>
</a>
@@ -16,7 +16,7 @@
<a href="/posts/" class="navbar-item navbar__icon
<?php echo $check = $navigation->isActive('posts') ? 'navbar__active' : ''; ?>">
<div class="has-text-centered">
- <?php echo featherIcon('book-open'); ?>
+ <?php echo icon('book-open'); ?>
<p class="is-size-7 navbar__icon__align">Posts</p>
</div>
</a>
@@ -24,7 +24,7 @@
<a href="/projects/" class="navbar-item navbar__icon
<?php echo $check = $navigation->isActive('projects') ? 'navbar__active' : ''; ?>">
<div class="has-text-centered">
- <?php echo featherIcon('briefcase'); ?>
+ <?php echo icon('briefcase'); ?>
<p class="is-size-7 navbar__icon__align">Projects</p>
</div>
</a>
@@ -32,7 +32,7 @@
<a href="/contact/" class="navbar-item navbar__icon
<?php echo $check = $navigation->isActive('contact') ? 'navbar__active' : ''; ?>">
<div class="has-text-centered">
- <?php echo featherIcon('mail'); ?>
+ <?php echo icon('mail'); ?>
<p class="is-size-7 navbar__icon__align">Contact</p>
</div>
</a>
@@ -41,7 +41,7 @@
<?php
$id = 'mobile-compact';
$type = 'is-menu is-right';
- $icon = feathericon('menu');
+ $icon = icon('menu');
$label = <<<insert
<span class="is-block has-text-centered">
$icon
@@ -64,7 +64,7 @@
<a title="Go to Website Repository"
href="/git/"
class="navbar-item item__box button is-inline-flex">
- <?php echo featherIcon('git-commit'); ?>
+ <?php echo icon('git-commit'); ?>
<span>Repo</span>
</a>
@@ -84,7 +84,7 @@
<a title="Coffee"
href ="https://ko-fi.com/thedroneely"
class="navbar-item item__box button is-inline-flex has-margin-right-none">
- <?php echo featherIcon('coffee'); ?>
+ <?php echo icon('coffee'); ?>
<span>Coffee</span>
</a>
</div>