5.3 버전 내용 적용
This commit is contained in:
@ -16,8 +16,8 @@ add_stylesheet('<link rel="stylesheet" href="'.$new_skin_url.'/style.css">', 0);
|
||||
<option value="w">원글만
|
||||
<option value="c">코멘트만
|
||||
</select>
|
||||
<input type="text" name="mb_id" value="<?php echo $mb_id ?>" id="mb_id" placeholder="검색어(필수)" required class="frm_input required">
|
||||
<input type="submit" value="검색" class="btn_submit">
|
||||
<input type="text" name="mb_id" value="<?php echo $mb_id ?>" id="mb_id" placeholder="검색어(필수)" required class="frm_input ">
|
||||
<button type="submit" value="검색" class="btn_submit"><i class="fa fa-search" aria-hidden="true"></i></button>
|
||||
</form>
|
||||
<script>
|
||||
function select_change()
|
||||
@ -31,16 +31,9 @@ add_stylesheet('<link rel="stylesheet" href="'.$new_skin_url.'/style.css">', 0);
|
||||
<!-- } 전체게시물 검색 끝 -->
|
||||
|
||||
<!-- 전체게시물 목록 시작 { -->
|
||||
<div class="tbl_head01 tbl_wrap">
|
||||
<table id="new_tbl">
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col">게시판</th>
|
||||
<th scope="col">제목</th>
|
||||
<th scope="col">일시</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<div class="list_01" id="new_list">
|
||||
<ul>
|
||||
|
||||
<?php
|
||||
for ($i=0; $i<count($list); $i++)
|
||||
{
|
||||
@ -48,18 +41,17 @@ add_stylesheet('<link rel="stylesheet" href="'.$new_skin_url.'/style.css">', 0);
|
||||
$bo_subject = cut_str($list[$i]['bo_subject'], 20);
|
||||
$wr_subject = get_text(cut_str($list[$i]['wr_subject'], 80));
|
||||
?>
|
||||
<tr>
|
||||
<td class="td_board"><a href="./board.php?bo_table=<?php echo $list[$i]['bo_table'] ?>"><?php echo $bo_subject ?></a></td>
|
||||
<td><a href="<?php echo $list[$i]['href'] ?>"><?php echo $list[$i]['comment'] ?><?php echo $wr_subject ?></a></td>
|
||||
<td class="td_date"><?php echo $list[$i]['datetime2'] ?></td>
|
||||
</tr>
|
||||
<li>
|
||||
<a href="<?php echo $list[$i]['href'] ?>" class="new_tit"><?php echo $list[$i]['comment'] ?><?php echo $wr_subject ?></a>
|
||||
<a href="./board.php?bo_table=<?php echo $list[$i]['bo_table'] ?>" class="new_board"><i class="fa fa-list-alt" aria-hidden="true"></i> <?php echo $bo_subject ?></a>
|
||||
<span class="new_date"><i class="fa fa-clock-o" aria-hidden="true"></i> <?php echo $list[$i]['datetime2'] ?></span>
|
||||
</li>
|
||||
<?php } ?>
|
||||
|
||||
<?php if ($i == 0)
|
||||
echo '<tr><td colspan="3" class="empty_table">게시물이 없습니다.</td></tr>';
|
||||
echo '<li class="empty_table">게시물이 없습니다.</li>';
|
||||
?>
|
||||
</tbody>
|
||||
</table>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<?php echo $write_pages ?>
|
||||
|
||||
@ -1,9 +1,11 @@
|
||||
@charset "utf-8";
|
||||
/* SIR 지운아빠 */
|
||||
|
||||
/* 새글 */
|
||||
#new_sch {margin:0 0 5px;padding:5px 10px}
|
||||
#new_tbl {}
|
||||
#new_tbl th:nth-of-type(3) {width:50px}
|
||||
|
||||
#new_tbl td:nth-of-type(3) {text-align:center}
|
||||
#new_sch {margin:10px;border:1px solid #bdc2d8;background:#fff;position:relative}
|
||||
#new_sch select{float:left;width:50%;border:0;height:40px}
|
||||
#new_sch #view{border-left:1px solid #e2e2e2}
|
||||
#new_sch .frm_input {border:0;border-top:1px solid #e2e2e2;width:100% }
|
||||
#new_sch .btn_submit {position:absolute;bottom:0;right:0;width:40px;height:40px;background:none;color:#000;font-size:15px}
|
||||
#new_list .new_tit{display:block;font-weight:bold;margin:0 0 5px;font-size:1.083em}
|
||||
#new_list .new_date{float:right;color:#666;font-style:italic}
|
||||
#new_list .new_board{color:#3ca1ff}
|
||||
Reference in New Issue
Block a user