default_layout.php
1.56 KB
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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Hello World</title>
<style type="text/css">
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 13px;
line-height: 18px;
color: #333;
width:1000px;
}
a:link {
text-decoration:none;
}
a:visited {
color:blue;
text-decoration:none;
}
a:hover {
color:#000000;
text-decoration:none;
}
a:active {
color:#FFFFFF;
text-decoration:none;
}
.title{width:100%;background:#333333;color:white; border:1px solid #d6d6d6; -webkit-border-radius: 6px;border-radius: 6px;}
.title h2{font-weight:bold;padding-left:20px;font-size:24px;}
.title h3{font-weight:bold;padding-left:600px;font-size:24px;}
.title a{color:white;}
.left_content{width:250px;float:left;}
.left{margin-top:20px;border:1px solid #d6d6d6;background:#EEE;-webkit-border-radius: 6px;border-radius: 6px;padding:20px;min-height:200px;}
.content{margin-top:20px;width:600px;float:right;border:1px solid #d6d6d6;background:#EEE;-webkit-border-radius: 6px;border-radius: 6px;padding:40px;min-height:300px;}
</style>
</head>
<body>
<div class='title'>
<h2><a href="<?php echo url('default::default/index')?>">Hello World</a></h2>
</div>
<div style='height:20px;width:100%;'></div>
<div class='left_content'>
<div class='left'>
侧栏
</div>
<div class='left'>
侧栏
</div>
</div>
<div class='content'>
<?php $this->_block('content');?><?php $this->_endblock();?>
</div>
</body>
</html>