경로 수정 작업 중
This commit is contained in:
11
skin/visit/basic/style.css
Normal file
11
skin/visit/basic/style.css
Normal file
@ -0,0 +1,11 @@
|
||||
/* 방문자 집계 */
|
||||
#visit {background:#444}
|
||||
#visit div {margin:0 auto;width:980px;zoom:1}
|
||||
#visit div:after {display:block;visibility:hidden;clear:both;content:""}
|
||||
#visit h2 {float:left;padding:10px 45px 10px 0;color:#fff}
|
||||
#visit dl {float:left;margin:0 0 0 10px;padding:0}
|
||||
#visit dt {float:left;margin:0;padding:10px 0 10px;color:#fff}
|
||||
#visit dd {float:left;margin:0 30px 0 0;padding:10px;color:#fff}
|
||||
#visit a {display:inline-block;padding:10px;color:#fff;text-decoration:none}
|
||||
#visit a:focus,
|
||||
#visit a:hover {background:#333;color:#fff}
|
||||
@ -1,32 +1,24 @@
|
||||
<?
|
||||
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
||||
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
||||
|
||||
global $is_admin;
|
||||
?>
|
||||
|
||||
<table width="220" border="0" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td colspan="3"><img src="<?=$visit_skin_path?>/img/visit_top.gif" width="220" height="11"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="15" height="88" rowspan="4" bgcolor="#F4F4F4"></td>
|
||||
<td width="73" height="22"><img src="<?=$visit_skin_path?>/img/visit_1.gif" width="73" height="22"></td>
|
||||
<td width="132" height="22" bgcolor="#F4F4F4"><font color="#4B4B4B"><?=number_format($visit[1])?></font>
|
||||
<? if ($is_admin == "super") { ?><a href="<?=$g4['admin_path']?>/visit_list.php"><img src="<?=$visit_skin_path?>/img/admin.gif" width="33" height="15" border="0" align="absmiddle"></a><?}?></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="73" height="22"><img src="<?=$visit_skin_path?>/img/visit_2.gif" width="73" height="22"></td>
|
||||
<td width="132" height="22" bgcolor="#F4F4F4"><font color="#4B4B4B"><?=number_format($visit[2])?></font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="73" height="22"><img src="<?=$visit_skin_path?>/img/visit_3.gif" width="73" height="22"></td>
|
||||
<td width="132" height="22" bgcolor="#F4F4F4"><font color="#4B4B4B"><?=number_format($visit[3])?></font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="73" height="22"><img src="<?=$visit_skin_path?>/img/visit_4.gif" width="73" height="22"></td>
|
||||
<td width="132" height="22" bgcolor="#F4F4F4"><font color="#4B4B4B"><?=number_format($visit[4])?></font></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3"><img src="<?=$visit_skin_path?>/img/visit_down.gif" width="220" height="11"></td>
|
||||
</tr>
|
||||
</table>
|
||||
<link rel="stylesheet" href="<?=$visit_skin_url?>/style.css">
|
||||
|
||||
<section id="visit">
|
||||
<div>
|
||||
<h2>방문자집계</h2>
|
||||
<dl>
|
||||
<dt>오늘</dt>
|
||||
<dd><?=number_format($visit[1])?></dd>
|
||||
<dt>어제</dt>
|
||||
<dd><?=number_format($visit[2])?></dd>
|
||||
<dt>최대</dt>
|
||||
<dd><?=number_format($visit[3])?></dd>
|
||||
<dt>전체</dt>
|
||||
<dd><?=number_format($visit[4])?></dd>
|
||||
</dl>
|
||||
<? if ($is_admin == "super") { ?><a href="<?=G4_ADMIN_URL?>/visit_list.php">상세보기</a><?}?>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
Reference in New Issue
Block a user