-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php.bak
60 lines (59 loc) · 1.92 KB
/
index.php.bak
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title><?php bloginfo('name') ?></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" href="<?php bloginfo('stylesheet_url') ?>" type="text/css" />
<script type='text/javascript' src="http://code.jquery.com/jquery-latest.min.js"></script>
</head>
<body>
<div id="wapper">
<div id="header" class="clear">
<h1 id="title" class="clear"><a href="<?php bloginfo('url'); ?>" title="<?php bloginfo('name'); ?>" class="link"><?php bloginfo('name') ?></a></h1>
<h2 id="subtitle" class="clear"><?php bloginfo('description') ?></h2>
<ul id="menu" class="clear">
<?php wp_list_pages('title_li=');?>
<script type='text/javascript'>
//<![CDATA[
$(".children").hide();
$("#menu > li").hover(
function () {
$(this).children("ul").slideDown();
},
function () {
$(this).children("ul").hide();
}
);
//]]>
</script>
</ul><!--menu-->
<p id="menu-bg"> </p>
</div><!--header-->
<div class="content-box clear" >
<div class="content">
<h3><?php the_title();?></h3>
<div id="content-line">
<p> </p>
<p></p>
</div>
<?php
the_content('Read the rest of this entry »');
get_template_part( 'loop', 'index' );
?>
</div><!--content-->
</div><!--content-box-->
<div id="line" class="clear">
<p> </p>
</div>
<div id="footer">
<div class="clear">
<p>校址:10658 台北市大安區信義路三段143號</p>
<p>總機:(02) 2707-5215</p>
<p>管理員信箱: <a href="mailto:<?php bloginfo('admin_email')?>"><?php bloginfo('admin_email')?></a></p>
<p>© 2010 國立臺灣師範大學附屬高級中學</p>
</div>
</div><!--footer-->
</div><!--wapper-->
</body>
</html>