header.html 315 B

12345678910111213
  1. <!-- basic header partial in hugo with just home and about -->
  2. <header class="p-4">
  3. <nav>
  4. <ul class="flex gap-4">
  5. <li>
  6. <a href="/" class="hover:text-blue-700">Home</a>
  7. </li>
  8. <li>
  9. <a href="/about" class="hover:text-blue-700">About</a>
  10. </li>
  11. </ul>
  12. </nav>
  13. </header>