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