Before Width: | Height: | Size: 2.7 MiB After Width: | Height: | Size: 842 KiB |
Before Width: | Height: | Size: 2.9 MiB After Width: | Height: | Size: 792 KiB |
Before Width: | Height: | Size: 2.8 MiB After Width: | Height: | Size: 696 KiB |
Before Width: | Height: | Size: 2.6 MiB After Width: | Height: | Size: 659 KiB |
Before Width: | Height: | Size: 2.9 MiB After Width: | Height: | Size: 818 KiB |
Before Width: | Height: | Size: 983 KiB After Width: | Height: | Size: 974 KiB |
@ -0,0 +1,185 @@ |
||||
/*蓝科企业网站系统PHP版 |
||||
http://www.lankecms.com*/
|
||||
$(document).ready(function(){ |
||||
//返回顶部
|
||||
$("#gototop").click(function(){ |
||||
$("html,body").animate({scrollTop :0}, 800);return false; |
||||
}); |
||||
// $("#gotocate").click(function(){
|
||||
// $("html,body").animate({scrollTop:$("#categories").offset().top},800);return false;
|
||||
// });
|
||||
// 搜索
|
||||
$("#small_search").click(function(){ |
||||
$("#topsearch").slideToggle(); |
||||
}); |
||||
// 友情链接
|
||||
$("#link_btn").click(function(){ |
||||
if ($(".link_list").css('display') == "none"){ |
||||
$("#link_btn").addClass("glyphicon-minus"); |
||||
}else{ |
||||
$("#link_btn").removeClass("glyphicon-minus"); |
||||
} |
||||
$(".link_list").slideToggle(); |
||||
}); |
||||
$("#tags_btn").click(function(){ |
||||
if ($(".tags_rows").css('display') == "none"){ |
||||
$("#tags_btn").addClass("glyphicon-minus"); |
||||
}else{ |
||||
$("#tags_btn").removeClass("glyphicon-minus"); |
||||
} |
||||
$(".tags_rows").slideToggle(); |
||||
}); |
||||
if($(window).width()>768){ |
||||
//鼠标划过就展开子菜单
|
||||
$('ul.nav li.dropdown').hover(function() { |
||||
$(this).find('.dropdown-menu').stop(true, true).slideDown(); |
||||
}, function() { |
||||
$(this).find('.dropdown-menu').stop(true, true).slideUp(); |
||||
}); |
||||
} |
||||
//scrollTop
|
||||
$(window).scroll(function(){ |
||||
var scrolls = $(window).scrollTop() |
||||
// if (scrolls > 160) {
|
||||
// $("#top_nav").addClass("navbar-fixed-top")
|
||||
// }else{
|
||||
// $("#top_nav").removeClass("navbar-fixed-top")
|
||||
// }
|
||||
}); |
||||
//左侧导航菜单
|
||||
// if ($("#firstpane .menu_body:eq(0)").text().replace(/[\r\n ]/g,"").length>0) {
|
||||
// $("#firstpane .menu_body:eq(0)").show().prev().html("-").prev().addClass("left_active");
|
||||
// };
|
||||
$("ul.menu_body").each(function(){ |
||||
if ($(this).text().replace(/[\r\n ]/g,"").length<=0) {$(this).prev().remove();} //去掉span
|
||||
}); |
||||
$("#firstpane span.menu_head").click(function(){ |
||||
var spanatt = $(this).next("ul.menu_body").css('display'); |
||||
if (spanatt == "block"){ |
||||
var spantext = "+"; |
||||
$(this).prev().removeClass("left_active"); |
||||
}else{ |
||||
var spantext = "-"; |
||||
$(this).prev().addClass("left_active"); |
||||
} |
||||
$(this).html(spantext).addClass("current").next("ul.menu_body").slideToggle(300).siblings("ul.menu_body"); |
||||
}); |
||||
|
||||
|
||||
// 要素资源 流动效果
|
||||
// function groupSlideB(){
|
||||
// imgScroll.rolling({
|
||||
// name:'line_resource',
|
||||
// width:'198px',
|
||||
// height:'116px',
|
||||
// direction:'left',
|
||||
// speed:10,
|
||||
// addcss:true
|
||||
// });
|
||||
// imgScroll.rolling({
|
||||
// name:'g2',
|
||||
// width:'198px',
|
||||
// height:'116px',
|
||||
// direction:'right',
|
||||
// speed:10,
|
||||
// addcss:true
|
||||
// });
|
||||
// imgScroll.rolling({
|
||||
// name:'g3',
|
||||
// width:'198px',
|
||||
// height:'116px',
|
||||
// direction:'left',
|
||||
// speed:10,
|
||||
// addcss:true
|
||||
// });
|
||||
// }
|
||||
// groupSlideB()
|
||||
|
||||
|
||||
$(function(){ |
||||
$("#header").load("../public/header1.html","",function(){ |
||||
$('.header').addClass('on'); |
||||
|
||||
//移动端展开nav
|
||||
$('#navToggle').on('click',function(){ |
||||
$('.m_nav').addClass('open'); |
||||
}) |
||||
//关闭nav
|
||||
$('.m_nav .top .closed').on('click',function(){ |
||||
$('.m_nav').removeClass('open'); |
||||
}) |
||||
//二级导航 移动端
|
||||
$(".m_nav .ul li").click(function() { |
||||
$(this).children("div.dropdown_menu").slideToggle('slow') |
||||
$(this).siblings('li').children('.dropdown_menu').slideUp('slow');
|
||||
}); |
||||
|
||||
|
||||
}); |
||||
$("#footer").load("../public/footer.html"); |
||||
}); |
||||
|
||||
|
||||
|
||||
}); |
||||
|
||||
|
||||
// 获取url参数
|
||||
function GetQueryString(name) |
||||
{ |
||||
var reg = new RegExp("(^|&)"+ name +"=([^&]*)(&|$)"); |
||||
var r = window.location.search.substr(1).match(reg); |
||||
if(r!=null)return unescape(r[2]); return null; |
||||
} |
||||
|
||||
// 判断是否是手机端打开
|
||||
function detectMobile() { |
||||
return ( ( window.innerWidth <= 800 ) ); |
||||
} |
||||
|
||||
// 公共信息-基本信息
|
||||
function getContact(){ |
||||
$.ajax({ |
||||
type: 'post', |
||||
url: 'https://suzhou.njrenzhou.cn/api.php/index/getBasics', |
||||
data:{ |
||||
group:'basics' |
||||
}, |
||||
dataType: 'json', |
||||
success: function (res) {
|
||||
if(res.code==200){ |
||||
var data = res.data; |
||||
// 头部信息
|
||||
$('meta')[3].content = data[2].value; |
||||
$('meta')[4].content = data[3].value; |
||||
$('link')[0].href = 'https://suzhou.njrenzhou.cn' + data[14].value; |
||||
// 集团简介
|
||||
$('#basicsPhone').append(data[28].value); |
||||
$('#basicsAddress').append(data[26].value); |
||||
$('#basicsEmails').append(data[27].value); |
||||
// 底部信息
|
||||
$('#basicsQrcode').append("<img src='https://suzhou.njrenzhou.cn" + data[22].value + "'>"); |
||||
$('#basicsFooter').append("@2022-2032 苏州创新投资集团有限公司 <a href='https://beian.miit.gov.cn/' target='_blank'>" + data[8].value + "</a> " + data[9].value + "营业执照"); |
||||
|
||||
// 地图
|
||||
var map = new BMapGL.Map("map"); |
||||
map.centerAndZoom(new BMapGL.Point(data[24].value, data[25].value), 19); |
||||
map.enableScrollWheelZoom(true); |
||||
// map.setHeading(0);
|
||||
// map.setTilt(0);
|
||||
|
||||
var myGeo = new BMapGL.Geocoder(); |
||||
// 将地址解析结果显示在地图上,并调整地图视野
|
||||
myGeo.getPoint(data[26].value, function(point){ |
||||
map.centerAndZoom(point, 16); |
||||
map.addOverlay(new BMapGL.Marker(point, {title: data[26].value})) |
||||
}) |
||||
|
||||
}
|
||||
}, |
||||
error: function (err) {
|
||||
console.log(err);
|
||||
} |
||||
}); |
||||
} |
||||
getContact();
|
@ -1,118 +0,0 @@ |
||||
<!-- 导航 --> |
||||
<header class="header on"> |
||||
<div class="container clearfix headerOut"> |
||||
<div class="fl left"> |
||||
<a href="#" ><img src="../images/logo2.png" alt="" class="img1" /></a> |
||||
<a href="#" ><img src="../images/logo1.png" alt="" class="img2" /></a> |
||||
</div> |
||||
<div class="fr nav"> |
||||
<ul class="navbar_nav" data-in="fadeInDown" data-out="fadeOutUp"> |
||||
<li class="active"> |
||||
<a href="../index.html">首页</a> |
||||
</li> |
||||
<li class="dropdown"> |
||||
<a href="javascript:void(0)">关于我们</a> |
||||
<div class="dropdown_menu"> |
||||
<a href="../about/about01.html">集团介绍</a> |
||||
<a href="../about/about02.html">董事长致辞</a> |
||||
<a href="../about/about03.html">核心能力</a> |
||||
<a href="../about/about04.html">企业文化</a> |
||||
<a href="../about/about05.html">组织架构</a> |
||||
<a href="../about/about06.html">合作伙伴</a> |
||||
<a href="../about/about07.html">联系我们</a> |
||||
</div> |
||||
</li> |
||||
<li class="dropdown"> |
||||
<a href="javascript:void(0)">业务版图</a> |
||||
<div class="dropdown_menu"> |
||||
<a href="../service/service01.html">基金集群</a> |
||||
<a href="../service/service11.html">产业地图</a> |
||||
<a href="../service/service03.html">投贷联动</a> |
||||
</div> |
||||
</li> |
||||
<li class="dropdown"> |
||||
<a href="javascript:void(0)">新闻中心</a> |
||||
<div class="dropdown_menu"> |
||||
<a href="../news/news01.html">集团要闻</a> |
||||
<a href="../news/news02.html">行业动态</a> |
||||
<a href="../news/news03.html">媒体聚焦</a> |
||||
</div> |
||||
</li> |
||||
<li> |
||||
<a href="../work/work.html">党建工作</a> |
||||
</li> |
||||
<li class="dropdown"> |
||||
<a href="javascript:void(0)">人才发展</a> |
||||
<div class="dropdown_menu"> |
||||
<a href="../talent/talent01.html">人才理念</a> |
||||
<a href="../talent/talent02.html">人才招聘</a> |
||||
</div> |
||||
|
||||
</li> |
||||
<li> |
||||
<a href="../form/form.html">投资申请</a> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<a href="javascript:void(0)" id="navToggle"> |
||||
<span></span> |
||||
</a> |
||||
</div> |
||||
</header> |
||||
<!--移动端的导航--> |
||||
<div class="m_nav"> |
||||
<div class="top clearfix"> |
||||
<img src="../images/closed.png" alt="" class="closed" /> |
||||
</div> |
||||
<div class="logo"> |
||||
<img src="../images/logo1.png" alt="" /> |
||||
</div> |
||||
<ul class="ul" data-in="fadeInDown" data-out="fadeOutUp"> |
||||
<li class="active"> |
||||
<a href="javascript:void(0)">首页</a> |
||||
</li> |
||||
<li class="dropdown"> |
||||
<a href="javascript:void(0)"> |
||||
关于我们 |
||||
</a> |
||||
<div class="dropdown_menu"> |
||||
<a href="../about/about01.html">集团介绍</a> |
||||
<a href="../about/about02.html">董事长致辞</a> |
||||
<a href="../about/about03.html">核心能力</a> |
||||
<a href="../about/about04.html">企业文化</a> |
||||
<a href="../about/about05.html">组织架构</a> |
||||
<a href="../about/about06.html">合作伙伴</a> |
||||
<a href="../about/about07.html">联系我们</a> |
||||
</div> |
||||
</li> |
||||
<li class="dropdown"> |
||||
<a href="javascript:void(0)">业务版图</a> |
||||
<div class="dropdown_menu"> |
||||
<a href="../service/service01.html">基金集群</a> |
||||
<a href="../service/service11.html">产业地图</a> |
||||
<a href="../service/service03.html">投贷联动</a> |
||||
</div> |
||||
</li> |
||||
<li class="dropdown"> |
||||
<a href="javascript:void(0)">新闻中心</a> |
||||
<div class="dropdown_menu"> |
||||
<a href="../news/news01.html">集团要闻</a> |
||||
<a href="../news/news02.html">行业动态</a> |
||||
<a href="../news/news03.html">媒体聚焦</a> |
||||
</div> |
||||
</li> |
||||
<li> |
||||
<a href="../work/work.html">党建工作</a> |
||||
</li> |
||||
<li class="dropdown"> |
||||
<a href="javascript:void(0)">人才发展</a> |
||||
<div class="dropdown_menu"> |
||||
<a href="../talent/talent01.html">人才理念</a> |
||||
<a href="../talent/talent02.html">人才招聘</a> |
||||
</div> |
||||
</li> |
||||
<li> |
||||
<a href="../form/form.html">投资申请</a> |
||||
</li> |
||||
</ul> |
||||
</div> |
@ -1,114 +0,0 @@ |
||||
<!doctype html> |
||||
<html> |
||||
<head> |
||||
<meta charset="utf-8"> |
||||
<title>js简单验证码使用</title> |
||||
<style> |
||||
.code |
||||
{ |
||||
font-family:Arial; |
||||
font-style:italic; |
||||
color:blue; |
||||
font-size:30px; |
||||
border:0; |
||||
padding:2px 3px; |
||||
letter-spacing:3px; |
||||
font-weight:bolder; |
||||
float:left; |
||||
cursor:pointer; |
||||
width:150px; |
||||
height:50px; |
||||
line-height:60px; |
||||
text-align:center; |
||||
vertical-align:middle; |
||||
background-color:#D8B7E3; |
||||
} |
||||
span { |
||||
text-decoration:none; |
||||
font-size:12px; |
||||
color:#288bc4; |
||||
padding-left:10px; |
||||
} |
||||
|
||||
span:hover { |
||||
text-decoration:underline; |
||||
cursor:pointer; |
||||
} |
||||
|
||||
</style> |
||||
</head> |
||||
<script> |
||||
//页面加载时,生成随机验证码 |
||||
window.onload=function(){ |
||||
createCode(4); |
||||
} |
||||
|
||||
//生成验证码的方法 |
||||
function createCode(length) { |
||||
var code = ""; |
||||
var codeLength = parseInt(length); //验证码的长度 |
||||
var checkCode = document.getElementById("checkCode"); |
||||
////所有候选组成验证码的字符,当然也可以用中文的 |
||||
var codeChars = new Array(0, 1, 2, 3, 4, 5, 6, 7, 8, 9, |
||||
'a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z', |
||||
'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z'); |
||||
//循环组成验证码的字符串 |
||||
for (var i = 0; i < codeLength; i++) |
||||
{ |
||||
//获取随机验证码下标 |
||||
var charNum = Math.floor(Math.random() * 62); |
||||
//组合成指定字符验证码 |
||||
code += codeChars[charNum]; |
||||
} |
||||
if (checkCode) |
||||
{ |
||||
//为验证码区域添加样式名 |
||||
checkCode.className = "code"; |
||||
//将生成验证码赋值到显示区 |
||||
checkCode.innerHTML = code; |
||||
} |
||||
} |
||||
|
||||
//检查验证码是否正确 |
||||
function validateCode() |
||||
{ |
||||
//获取显示区生成的验证码 |
||||
var checkCode = document.getElementById("checkCode").innerHTML; |
||||
//获取输入的验证码 |
||||
var inputCode = document.getElementById("inputCode").value; |
||||
console.log(checkCode); |
||||
console.log(inputCode); |
||||
if (inputCode.length <= 0) |
||||
{ |
||||
alert("请输入验证码!"); |
||||
} |
||||
else if (inputCode.toUpperCase() != checkCode.toUpperCase()) |
||||
{ |
||||
alert("验证码输入有误!"); |
||||
createCode(4); |
||||
} |
||||
else |
||||
{ |
||||
alert("验证码正确!"); |
||||
} |
||||
} |
||||
</script> |
||||
<body> |
||||
<div> |
||||
<table border="0" cellspacing="5" cellpadding="5" > |
||||
<tr> |
||||
<td> <div id="checkCode" class="code" onclick="createCode(4)" ></div></td> |
||||
<td> <span onclick="createCode(4)">看不清换一张</span></td> |
||||
</tr> |
||||
<tr> |
||||
<td>验证码:</td> |
||||
<td><input type="text" id="inputCode" style="float:left;" /></td> |
||||
</tr> |
||||
<tr> |
||||
<td></td> |
||||
<td><input type="button" onclick="validateCode()" value="确定" /></td> |
||||
</tr> |
||||
</table> |
||||
</div> |
||||
</body> |
||||
</html> |
@ -1,11 +1,12 @@ |
||||
从命令行创建一个新的仓库 |
||||
touch README.md |
||||
git init |
||||
git checkout -b main |
||||
git add README.md |
||||
git commit -m "first commit" |
||||
git remote add origin http://git.njrzwl.cn:3000/renzhou/suzhou.git |
||||
git push -u origin main |
||||
从命令行推送已经创建的仓库 |
||||
git remote add origin http://git.njrzwl.cn:3000/renzhou/suzhou.git |
||||
git push -u origin main |
||||
### 从命令行创建一个新的仓库 |
||||
1. touch README.md |
||||
2. git init |
||||
3. git checkout -b main |
||||
4. git add README.md |
||||
5. git commit -m "first commit" |
||||
6. git remote add origin http://git.njrzwl.cn:3000/renzhou/suzhou.git |
||||
7. git push -u origin main |
||||
|
||||
### 从命令行推送已经创建的仓库 |
||||
1. git remote add origin http://git.njrzwl.cn:3000/renzhou/suzhou.git |
||||
2. git push -u origin main |
@ -1,45 +0,0 @@ |
||||
{ |
||||
// The tab key will cycle through the settings when first created |
||||
// Visit https://codexns.io/products/sftp_for_subime/settings for help |
||||
|
||||
// sftp, ftp or ftps |
||||
"type": "sftp", |
||||
|
||||
"save_before_upload": true, |
||||
"upload_on_save": false, |
||||
"sync_down_on_open": false, |
||||
"sync_skip_deletes": false, |
||||
"sync_same_age": true, |
||||
"confirm_downloads": false, |
||||
"confirm_sync": true, |
||||
"confirm_overwrite_newer": false, |
||||
|
||||
"host": "47.100.47.158", |
||||
"user": "suzhou", |
||||
"password": "WEBY7SHSFdeEECj4", |
||||
"port": "21", |
||||
|
||||
"remote_path": "/", |
||||
"ignore_regexes": [ |
||||
"\\.sublime-(project|workspace)", "sftp-config(-alt\\d?)?\\.json", |
||||
"sftp-settings\\.json", "/venv/", "\\.svn/", "\\.hg/", "\\.git/", |
||||
"\\.bzr", "_darcs", "CVS", "\\.DS_Store", "Thumbs\\.db", "desktop\\.ini" |
||||
], |
||||
//"file_permissions": "664", |
||||
//"dir_permissions": "775", |
||||
|
||||
//"extra_list_connections": 0, |
||||
|
||||
"connect_timeout": 30, |
||||
//"keepalive": 120, |
||||
"ftp_passive_mode": true, |
||||
//"ftp_obey_passive_host": false, |
||||
//"ssh_key_file": "~/.ssh/id_rsa", |
||||
//"sftp_flags": ["-F", "/path/to/ssh_config"], |
||||
|
||||
//"preserve_modification_times": false, |
||||
//"remote_time_offset_in_hours": 0, |
||||
//"remote_encoding": "utf-8", |
||||
//"remote_locale": "C", |
||||
"allow_config_upload": true, |
||||
} |
@ -1,109 +0,0 @@ |
||||
|
||||
<!DOCTYPE html> |
||||
<html lang="zh-CN"> |
||||
<head> |
||||
<meta charset="utf-8"> |
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> |
||||
<meta name="viewport" content="width=device-width, initial-scale=1"> |
||||
<title>苏州创新投资集团有限公司</title> |
||||
<meta name="Keywords" content=""> |
||||
<meta name="Description" content=""> |
||||
<meta name="applicable-device"content="pc,mobile"> |
||||
<link href="../css/bootstrap.css" rel="stylesheet"> |
||||
<link href="../css/bxslider.css" rel="stylesheet"> |
||||
<link href="../css/style.css" rel="stylesheet"> |
||||
<link rel="stylesheet" href="../css/talent.css"> |
||||
<link href="../css/animate.css" rel="stylesheet" > |
||||
<!--导航样式--> |
||||
<link rel="stylesheet" href="../css/head.css" /> |
||||
<link rel="stylesheet" href="../css/footer.css"> |
||||
<script src="../js/jquery.min.js"></script> |
||||
<!-- <script src="http://www.jeendo.com/script/wow/wow.min2.js"></script> --> |
||||
<script src="../js/subpage.js"></script> |
||||
<script src="../js/common.js"></script> |
||||
<script src="../js/bootstrap.js"></script> |
||||
|
||||
</head> |
||||
|
||||
<body> |
||||
|
||||
<div id="header"></div> |
||||
|
||||
<!-- part0 --> |
||||
<div class="section section0 section-spe fp-auto-height fp-section"> |
||||
<div style="position: relative;"> |
||||
<img src="../images/人才发展banner@2x.png" class="bgimage" alt=""> |
||||
<div class="titlecontent"> |
||||
<p class="title1">人才招聘</p> |
||||
<p class="subtitle">TALENT RECRUITMENT</p> |
||||
</div> |
||||
<div class="container navcontent"> |
||||
<div class="row"> |
||||
<a href="talent01.html" class="col-xs-6 col-sm-6 col-md-6 col-lg-6 col-xl-6 col-xxl-6 navitem"> |
||||
<div class="navtitle">人才理念</div> |
||||
<div class="navsubtitle">TALENT CONCEPT</div> |
||||
</a> |
||||
<a href="talent02.html" class="navaction col-xs-6 col-sm-6 col-md-6 col-lg-6 col-xl-6 col-xxl-6 navitem"> |
||||
<div class="navtitle">人才招聘</div> |
||||
<div class="navsubtitle">TALENT RECRUITMENT</div> |
||||
</a> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
|
||||
|
||||
<!-- part1 --> |
||||
<div class="part talent_02"> |
||||
<div class="container"> |
||||
<div class="row"> |
||||
<div class="col-xs-12 col-sm-12 col-md-12 title"> |
||||
<img src="../images/line.png"> |
||||
<h2 class="wow fadeInDown">人才招聘</h2> |
||||
<h2 class="wow fadeInDown">TALENT RECRUITMENT</h2> |
||||
</div> |
||||
<div class="col-xs-12 col-sm-12 col-md-12 wrap"> |
||||
<ul> |
||||
|
||||
<li class="col-xs-12 col-sm-12 col-md-12 list wow fadeInDown"> |
||||
<div class="text text-1"> |
||||
<a href="detail.html" target="_blank">医疗健康、信息技术、智能制造、军工、大消费与企业服务行业投资副总监若干名</a> |
||||
<p>招聘人数:3名</p> |
||||
</div> |
||||
<div class="text text-2"> |
||||
<a href="detail.html" target="_blank">></a> |
||||
<p>2022-10-23</p> |
||||
</div> |
||||
</li> |
||||
<li class="col-xs-12 col-sm-12 col-md-12 list wow fadeInDown"> |
||||
<div class="text text-1"> |
||||
<a href="detail.html" target="_blank">募资副总监3名</a> |
||||
<p>招聘人数:3名</p> |
||||
</div> |
||||
<div class="text text-2"> |
||||
<a href="detail.html" target="_blank">></a> |
||||
<p>2022-10-23</p> |
||||
</div> |
||||
</li> |
||||
<li class="col-xs-12 col-sm-12 col-md-12 list wow fadeInDown"> |
||||
<div class="text text-1"> |
||||
<a href="detail.html" target="_blank">医疗健康、信息技术、智能制造、军工、大消费与企业服务行业投资副总监若干名</a> |
||||
<p>招聘人数:3名</p> |
||||
</div> |
||||
<div class="text text-2"> |
||||
<a href="detail.html" target="_blank">></a> |
||||
<p>2022-10-23</p> |
||||
</div> |
||||
</li> |
||||
|
||||
</ul> |
||||
|
||||
</div> |
||||
</div> |
||||
</div> |
||||
</div> |
||||
|
||||
<div id="footer"></div> |
||||
|
||||
</body> |
||||
</html> |