header.php 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <!DOCTYPE html>
  2. <html lang="en-US">
  3. <head>
  4. <!--
  5. . . . . . .
  6. . . ...-..-| |-. .-. .-.-..-| .-.. ...-|
  7. ` ` '' '`-'-' '-`-`-' ' '`-'-`-`-` '`-'-
  8. -->
  9. <meta charset="UTF-8" />
  10. <meta name="viewport" content="width=device-width, initial-scale=1">
  11. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  12. <meta name="description" content="<?php dw_meta_desc();?>"/>
  13. <?php wp_head(); ?>
  14. </head>
  15. <body <?php page_bodyclass(); ?>>
  16. <header id="header">
  17. <div class="navbar fixed-top">
  18. <div class="container">
  19. <div class="site-title">
  20. <a href="#offcanvasNav" class="navbar-brand navbar-right light" data-bs-toggle="offcanvas" data-bs-target="#offcanvasNav" aria-controls="offcanvasNav" title="David A. Windham" rel="home">David A. Windham</a>
  21. </div>
  22. </div>
  23. </div>
  24. </header>
  25. <div class="offcanvas offcanvas-top text-bg-blue" tabindex="-1" id="offcanvasNav" aria-labelledby="offcanvasNavLabel">
  26. <nav class="d-flex justify-content-center" role="navigation">
  27. <ul class="nav list-group-horizontal list-group pt-4 fs-5">
  28. <li class="list-group-item list-group-flush"><a href="<?php echo home_url( '/' ); ?>"><i class="bi bi-house"></i></a></li>
  29. <li class="list-group-item"><a href="<?php echo home_url( '/' ); ?>about"><i class="bi bi-person"></i> About</a></li>
  30. <li class="list-group-item"><a href="<?php echo home_url( '/' ); ?>desk"><i class="bi bi-pen"></i> Desk</a></li>
  31. <li class="list-group-item"><a href="<?php echo home_url( '/' ); ?>now"><i class="bi bi-hourglass"></i> Now</a></li>
  32. <li class="list-group-item"><a href="<?php echo home_url( '/' ); ?>studio"><i class="bi bi-lightbulb"></i> Studio</a></li>
  33. <li class="list-group-item"><a href="<?php echo home_url( '/' ); ?>contact"><i class="bi bi-envelope"></i> Contact</a></li>
  34. <li class="list-group-item"><a href="<?php echo home_url( '/' ); ?>sitemap"><i class="bi bi-diagram-3"></i></a></li>
  35. </ul>
  36. </nav>
  37. </div>