메인 최글글 margin 처리 부분 재수정

This commit is contained in:
chicpro
2013-01-24 10:08:04 +09:00
parent 6223507657
commit 50411b85e2
2 changed files with 37 additions and 35 deletions

View File

@ -17,17 +17,17 @@ for ($i=0; $row=sql_fetch_array($result); $i++) {
// 사용방법 // 사용방법
// latest(스킨, 게시판아이디, 출력라인, 글자수); // latest(스킨, 게시판아이디, 출력라인, 글자수);
if(($i % 2 == 1))
echo "<div class=\"lt\" style=\"margin-left: 20px;\">";
else
echo "<div class=\"lt\">";
echo latest("neo", $row['bo_table'], 5, 25); echo latest("neo", $row['bo_table'], 5, 25);
echo "</div>";
} }
?> ?>
<!-- 메인화면 최신글 끝 --> <!-- 메인화면 최신글 끝 -->
<script>
$(function() {
$(".lt:odd").css("margin-left", "20px");
});
</script>
<? <?
include_once('./_tail.php'); include_once('./_tail.php');
?> ?>

View File

@ -2,36 +2,38 @@
if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가 if (!defined('_GNUBOARD_')) exit; // 개별 페이지 접근 불가
?> ?>
<strong class="lt_title"><a href="<?=$g4['bbs_path']?>/board.php?bo_table=<?=$bo_table?>"><?=$bo_subject?></a></strong> <div class="lt">
<ul> <strong class="lt_title"><a href="<?=$g4['bbs_path']?>/board.php?bo_table=<?=$bo_table?>"><?=$bo_subject?></a></strong>
<? for ($i=0; $i<count($list); $i++) { ?> <ul>
<li> <? for ($i=0; $i<count($list); $i++) { ?>
<? <li>
echo $list[$i]['icon_reply']." "; <?
echo "<a href=\"".$list[$i]['href']."\">"; echo $list[$i]['icon_reply']." ";
if ($list[$i]['is_notice']) echo "<a href=\"".$list[$i]['href']."\">";
echo "<strong>".$list[$i]['subject']."</strong>"; if ($list[$i]['is_notice'])
else echo "<strong>".$list[$i]['subject']."</strong>";
echo $list[$i]['subject']; else
echo $list[$i]['subject'];
if ($list[$i]['comment_cnt']) if ($list[$i]['comment_cnt'])
echo " <span class=\"cnt_cmt\">".$list[$i]['comment_cnt']."</span>"; echo " <span class=\"cnt_cmt\">".$list[$i]['comment_cnt']."</span>";
echo "</a>"; echo "</a>";
// if ($list[$i]['link']['count']) { echo "[{$list[$i]['link']['count']}]"; } // if ($list[$i]['link']['count']) { echo "[{$list[$i]['link']['count']}]"; }
// if ($list[$i]['file']['count']) { echo "<{$list[$i]['file']['count']}>"; } // if ($list[$i]['file']['count']) { echo "<{$list[$i]['file']['count']}>"; }
if (isset($list[$i]['icon_new'])) echo " " . $list[$i]['icon_new']; if (isset($list[$i]['icon_new'])) echo " " . $list[$i]['icon_new'];
if (isset($list[$i]['icon_hot'])) echo " " . $list[$i]['icon_hot']; if (isset($list[$i]['icon_hot'])) echo " " . $list[$i]['icon_hot'];
if (isset($list[$i]['icon_file'])) echo " " . $list[$i]['icon_file']; if (isset($list[$i]['icon_file'])) echo " " . $list[$i]['icon_file'];
if (isset($list[$i]['icon_link'])) echo " " . $list[$i]['icon_link']; if (isset($list[$i]['icon_link'])) echo " " . $list[$i]['icon_link'];
if (isset($list[$i]['icon_secret'])) echo " " . $list[$i]['icon_secret']; if (isset($list[$i]['icon_secret'])) echo " " . $list[$i]['icon_secret'];
?> ?>
</li> </li>
<? } ?> <? } ?>
</ul> </ul>
<? if (count($list) == 0) { //게시물이 없을 때 ?> <? if (count($list) == 0) { //게시물이 없을 때 ?>
<p>게시물이 없습니다.</p> <p>게시물이 없습니다.</p>
<? } ?> <? } ?>
<div class="lt_more"><a href="<?=$g4['bbs_path']?>/board.php?bo_table=<?=$bo_table?>"><img src="<?=$latest_skin_path?>/img/icon_more.gif" alt=""></a></div> <div class="lt_more"><a href="<?=$g4['bbs_path']?>/board.php?bo_table=<?=$bo_table?>"><img src="<?=$latest_skin_path?>/img/icon_more.gif" alt=""></a></div>
</div>