모바일 생성
This commit is contained in:
BIN
mobile/skin/new/basic/img/dot_bg.gif
Normal file
BIN
mobile/skin/new/basic/img/dot_bg.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 43 B |
BIN
mobile/skin/new/basic/img/list_top_01.gif
Normal file
BIN
mobile/skin/new/basic/img/list_top_01.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 58 B |
BIN
mobile/skin/new/basic/img/list_top_02.gif
Normal file
BIN
mobile/skin/new/basic/img/list_top_02.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 70 B |
BIN
mobile/skin/new/basic/img/list_top_03.gif
Normal file
BIN
mobile/skin/new/basic/img/list_top_03.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 853 B |
BIN
mobile/skin/new/basic/img/list_top_04.gif
Normal file
BIN
mobile/skin/new/basic/img/list_top_04.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 58 B |
71
mobile/skin/new/basic/new.skin.php
Normal file
71
mobile/skin/new/basic/new.skin.php
Normal file
@ -0,0 +1,71 @@
|
||||
<?
|
||||
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
||||
?>
|
||||
|
||||
<h1>모바일 버전</h1>
|
||||
<h1>모바일 버전</h1>
|
||||
<h1>모바일 버전</h1>
|
||||
<h1>모바일 버전</h1>
|
||||
<h1>모바일 버전</h1>
|
||||
<h1>모바일 버전</h1>
|
||||
|
||||
|
||||
<!-- 검색 -->
|
||||
<fieldset id="new_sch">
|
||||
<legend>상세검색</legend>
|
||||
<form name="fnew" method="get">
|
||||
<?=$group_select?>
|
||||
<select id="view" name="view" onchange="select_change()" title="검색종류">
|
||||
<option value="">전체게시물
|
||||
<option value="w">원글만
|
||||
<option value="c">코멘트만
|
||||
</select>
|
||||
<input type="text" id="mb_id" name="mb_id" class="fs_input" value="<?=$mb_id?>" title="검색어(필수)">
|
||||
<input type="submit" class="fs_submit" value="검색">
|
||||
</form>
|
||||
<script>
|
||||
function select_change()
|
||||
{
|
||||
document.fnew.submit();
|
||||
}
|
||||
document.getElementById("gr_id").value = "<?=$gr_id?>";
|
||||
document.getElementById("view").value = "<?=$view?>";
|
||||
</script>
|
||||
</fieldset>
|
||||
<!-- 검색 끝 -->
|
||||
|
||||
<!-- 제목 시작 -->
|
||||
<table class="basic_tbl">
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col">그룹</th>
|
||||
<th scope="col">게시판</th>
|
||||
<th scope="col">제목</th>
|
||||
<th scope="col">이름</th>
|
||||
<th scope="col">일시</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<?
|
||||
for ($i=0; $i<count($list); $i++)
|
||||
{
|
||||
$gr_subject = cut_str($list[$i]['gr_subject'], 20);
|
||||
$bo_subject = cut_str($list[$i]['bo_subject'], 20);
|
||||
$wr_subject = get_text(cut_str($list[$i]['wr_subject'], 80));
|
||||
?>
|
||||
<tr>
|
||||
<td class="td_group"><a href="./new.php?gr_id=<?=$list[$i]['gr_id']?>"><?=$gr_subject?></a></td>
|
||||
<td class="td_board"><a href="./board.php?bo_table=<?=$list[$i]['bo_table']?>"><?=$bo_subject?></a></td>
|
||||
<td><a href="<?=$list[$i]['href']?>"><?=$list[$i]['comment']?><?=$wr_subject?></a></td>
|
||||
<td class="td_name"><div><?=$list[$i]['name']?></div></td>
|
||||
<td class="td_date"><?=$list[$i]['datetime2']?></td>
|
||||
</tr>
|
||||
<? } ?>
|
||||
|
||||
<? if ($i == 0)
|
||||
echo "<tr><td colspan=\"5\" class=\"empty_table\">게시물이 없습니다.</td></tr>";
|
||||
?>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<?=$write_pages?>
|
||||
Reference in New Issue
Block a user