-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
133 lines (98 loc) · 3.82 KB
/
index.html
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="zh-CN" xml:lang="zh-CN"
xmlns:wb="http://open.weibo.com/wb">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta charset="gb2312"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
<meta name="description" content="{$corpname}"/>
<meta name="author" content="Iot-space"/>
<meta name="renderer" content="webkit"/>
<meta property="wb:webmaster" content="7e2da65b2c3219b2" />
<!-- 指定网页使用 webkit 引擎渲染 -->
<meta http-equiv="Cache-Control" content="no-siteapp" />
<!-- 不被百度转码 -->
<link rel="shortcut icon" href="../../assets/ico/favicon.png"/>
<title>
我的网站
</title>
<!-- 引入pure-css -->
<link href="__PUBLIC__/pure/pure.css" rel="stylesheet" type="text/css"/>
<link href="__PUBLIC__/pure/pure-grids-responsive-min.css" rel="stylesheet" type="text/css"/>
<!-- 引入jquery -->
<script type="text/javascript" src="__PUBLIC__/JQuery/jquery-1.8.3.min.js"> </script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js">
</script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js">
</script>
<![endif]-->
<script type="text/javascript">
//最精简的模板引擎
//https://github.com/trix/nano/blob/master/nano.js
function nano(template, data) {
return template.replace(/\[([\w\.]*)\]/g, function(str, key) {
var keys = key.split("."), v = data[keys.shift()];
for (var i = 0, l = keys.length; i < l; i++) v = v[keys[i]];
return (typeof v !== "undefined" && v !== null) ? v : "";
});
}
</script>
<!--页面style-->
<style>
</style>
</head>
<body >
<div class="pure-g">
<div class="pure-u-3-4" >
<div style="background-color:red;height:100px;">
我是div
</div>
</div>
<div class="pure-u-1-4" >
<div style="background-color:blue;height:100px;">
我是div
</div>
</div>
</div>
<div class="pure-g zz-bgc01">
<!--头部-->
<div class="pure-u-1 zz-bgc19 zz-jianbian2 zz-bdb1 zz-bdc19" >
<div class="zz-auto" style="padding: 12px 15px;max-width: 3280px;">
<div class="pure-g">
<div class="pure-u-3-4" id="pb61title" tabindex='-1' >
<h3 class="zz-cor45 zz-mg0 zz-mp1" style="margin:0px;padding-left:10px;">
洛阳
<div style="font-style: italic; display: inline-block; " class="zz-cor01">
超旺 </div>
软件</h3>
</div>
</div>
</div>
</div>
<!--主体内容-->
<!-- div> <p style="width:200px"> <b>hello world</p>
</div> -->
<!--底部 -->
<div class="pure-u-1 " >
<div class="zz-auto zz-tc zz-bgc19 zz-cor02"
style="padding: 1% 5px;max-width: 3280px;">
<div class="pure-g " >
<div class="pure-u-1 zz-tc " >
<h5 style="margin:5px 0;">版权所有: 洛阳超旺 2016-2026</h5>
<h5 style="margin:5px 0;">网 址:
<a href="http://www.softputian.com" style="color:yellow;">www.softputian.com</a></h5>
</div>
</div>
</div>
</div>
<script type="text/javascript">
function abc(){
alert('hello the world');
}
abc();
</script>
</body>
</html>