01.
<!doctype html>
02.
<html>
03.
<head>
04.
<meta charset=
"utf-8"
>
05.
<title>Home</title>
06.
<link href=
"/css/home.css"
rel=
"stylesheet"
/>
07.
<link href=
"/jquery-ui-1.11.1/themes/ui-lightness/jquery-ui.css"
rel=
"stylesheet"
/>
08.
<script src=
"/jquery/jquery-2.1.1.min.js"
></script>
09.
<script src=
"/jquery-ui-1.11.1/jquery-ui.js"
></script>
10.
</head>
11.
<body>
12.
<div style=
"position: fixed; width: 100%; text-align: center; z-index: 9999"
>
13.
<img src=
"/new_img/logo.gif"
/><br/>
14.
<?php
foreach
(
$blog_menus
as
$menu
):?>
15.
<img
class
=menu src=
"/new_img/<?=$menu['menu_name']?>_org.png"
id=
"mnu<?=$menu['menu_name']?>"
/>
16.
<?php
endforeach
?>
17.
18.
</div>
19.
<div style=
"height: 120px"
><img src=
"/new_img/space.png"
height=
"120"
/></div>
20.
<div style=
"position: absolute; top: 133px; text-align:center;"
id=
"board"
>
21.
<?php
foreach
(
$blog_topics
as
$topic
):?>
22.
<div
class
=
"topic line<?=$topic['line_class']?>"
rec_id=
"<?=$topic['rec_id']?>"
><span><?=
$topic
[
'topic'
]?></span></div>
23.
<?php
endforeach
?>
24.
<div
class
=
"more line<?=$more_class?>"
rec_id=
"all"
><b>More....</b></div>
25.
<div style=
"height: 120px"
><img src=
"/new_img/space.png"
height=
"120"
/></div>
26.
</div>
27.
<div style=
"width: 600px; height: 90px; z-index: 9990"
><img src=
"/new_img/block.png"
height=
"90"
/></div>
28.
<div style=
"position: fixed; width: 600px; height: 80px; bottom: 10px; display: none; z-index:9990"
class
=
"add_bottom_600x80"
></div>
29.
<div id=
'myPopUp'
style=
"position: absolute; display:none; z-index:9999"
></div>
30.
</body>
31.
</html>