summaryrefslogtreecommitdiff
path: root/source/_nav/menu.blade.php
diff options
context:
space:
mode:
authorDavid T. Sadler <davidtsadler@googlemail.com>2020-02-21 21:09:36 +0000
committerDavid T. Sadler <davidtsadler@googlemail.com>2020-02-21 21:09:36 +0000
commit9ea58efcba563ec7572ce155788e7b44a59de3c6 (patch)
tree7c13932af559afcd297c6f99214a16ee557bf336 /source/_nav/menu.blade.php
parenta12d45489a078f8067489ef8b42745c7b46e9a9a (diff)
Add pagincation to home page
Diffstat (limited to 'source/_nav/menu.blade.php')
-rw-r--r--source/_nav/menu.blade.php16
1 files changed, 0 insertions, 16 deletions
diff --git a/source/_nav/menu.blade.php b/source/_nav/menu.blade.php
deleted file mode 100644
index b8708d8..0000000
--- a/source/_nav/menu.blade.php
+++ /dev/null
@@ -1,16 +0,0 @@
-<nav class="hidden lg:flex items-center justify-end text-lg">
- <a title="{{ $page->siteName }} Blog" href="/blog"
- class="ml-6 text-gray-700 hover:text-blue-600 {{ $page->isActive('/blog') ? 'active text-blue-600' : '' }}">
- Blog
- </a>
-
- <a title="{{ $page->siteName }} About" href="/about"
- class="ml-6 text-gray-700 hover:text-blue-600 {{ $page->isActive('/about') ? 'active text-blue-600' : '' }}">
- About
- </a>
-
- <a title="{{ $page->siteName }} Contact" href="/contact"
- class="ml-6 text-gray-700 hover:text-blue-600 {{ $page->isActive('/contact') ? 'active text-blue-600' : '' }}">
- Contact
- </a>
-</nav>