aboutsummaryrefslogtreecommitdiff
path: root/app
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
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')
-rw-r--r--app/views/components/theme-toggle.php4
-rw-r--r--app/views/contact.view.php2
-rw-r--r--app/views/index.view.php4
-rw-r--r--app/views/partials/navigator.php14
4 files changed, 12 insertions, 12 deletions
diff --git a/app/views/components/theme-toggle.php b/app/views/components/theme-toggle.php
index 60b9ace..cfaf193 100644
--- a/app/views/components/theme-toggle.php
+++ b/app/views/components/theme-toggle.php
@@ -12,7 +12,7 @@
type="submit"
value="light"
>
- <?php echo featherIcon('sun', 'is-hidden-mobile'); ?>
+ <?php echo icon('sun', 'is-hidden-mobile'); ?>
<span>Light</span>
</button>
@@ -25,7 +25,7 @@
type="submit"
value="dark"
>
- <?php echo featherIcon('moon', 'is-hidden-mobile'); ?>
+ <?php echo icon('moon', 'is-hidden-mobile'); ?>
<span>Dark</span>
</button>
diff --git a/app/views/contact.view.php b/app/views/contact.view.php
index 28bb114..bcf44e1 100644
--- a/app/views/contact.view.php
+++ b/app/views/contact.view.php
@@ -70,7 +70,7 @@
<div class="field">
<div class="control">
<button class="button item__box has-text-weight-normal">
- <?php echo featherIcon('send'); ?>
+ <?php echo icon('send'); ?>
<span>Send Message</span>
</button>
</div>
diff --git a/app/views/index.view.php b/app/views/index.view.php
index ac41734..a555a00 100644
--- a/app/views/index.view.php
+++ b/app/views/index.view.php
@@ -74,7 +74,7 @@
<a href="/posts/page/2/"
class="front__more is-block has-text-centered">
See More Posts
- <?php featherIcon('chevron-right'); ?>
+ <?php icon('chevron-right'); ?>
</a>
<br>
@@ -100,7 +100,7 @@
<a href="/projects/page/2/"
class="front__more is-block has-text-centered">
See More Projects
- <?php featherIcon('chevron-right'); ?>
+ <?php icon('chevron-right'); ?>
</a>
<br>
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>