header.php 776 B

1234567891011121314151617181920212223
  1. <!doctype html>
  2. <html lang="ko">
  3. <?
  4. include($_SERVER['DOCUMENT_ROOT']."/design/staff/inc/head.php");
  5. ?>
  6. <body>
  7. <header>
  8. <div class="header--wrapper">
  9. <div class="header--contents">
  10. <h1 class="logo"></h1>
  11. <div class="gnb--wrapper">
  12. <a href="sell_car.php" class="<?if($MENU_ACTV == 1){?>actv<?}?>">차량 판매하기</a>
  13. <a href="#" class="<?if($MENU_ACTV == 2){?>actv<?}?>">입찰대기</a>
  14. <a href="#" class="<?if($MENU_ACTV == 3){?>actv<?}?>">입찰중</a>
  15. <a href="#" class="<?if($MENU_ACTV == 4){?>actv<?}?>">거래중</a>
  16. <a href="#" class="<?if($MENU_ACTV == 5){?>actv<?}?>">판매완료</a>
  17. <a href="#" class="<?if($MENU_ACTV == 6){?>actv<?}?>">유찰</a>
  18. </div>
  19. </div>
  20. </div>
  21. </header>