mirror of
https://github.com/wu736139669/vczero.github.io.git
synced 2026-08-05 06:23:38 +00:00
29 lines
704 B
HTML
29 lines
704 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
|
|
<title>首页</title>
|
|
<link rel="stylesheet" type="text/css" href="../css/main.css">
|
|
<script type="text/javascript" src="../js/sea2.3.js"></script>
|
|
<script type="text/javascript" src="../js/zepto.js"></script>
|
|
</head>
|
|
<body>
|
|
<script>
|
|
seajs.use('../tpl/header', function (header) {
|
|
$('body').append($(header('header',{title:'首页'})));
|
|
// $('#header_title').text('首页');
|
|
});
|
|
|
|
seajs.use('../tpl/footer', function (template) {
|
|
$('body').append($(template('footer')));
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|
|
|
|
|
|
|
|
|
|
|