forked from feinet/feinet.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
89 lines (72 loc) · 3.51 KB
/
Copy pathindex.html
File metadata and controls
89 lines (72 loc) · 3.51 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
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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>---index---</title>
<script src="Libs/Js/angular/angular.js"></script>
<script src="Libs/Js/angular/angular-route.js"></script>
<script src="Libs/Js/app.js"></script>
<script src="Libs/Js/ctrls/mainCtrl.js"></script>
<script src="Libs/Js/ctrls/ctrls.js"></script>
<script src="Libs/Js/jquery/jquery-1.11.1.js"></script>
<script src="Libs/Js/bootstrap3/bootstrap.js"></script>
<!--<link href="Libs/Css/bootstrap3/bootstrap.css" rel="stylesheet" />-->
<link href="Libs/Css/Custom/bootstrap.css" rel="stylesheet" />
<link href="Libs/Css/WebFont/awesome-4.1.0/font-awesome.css" rel="stylesheet" />
<link href="Libs/Css/Custom/main.css" rel="stylesheet" />
</head>
<body ng-app="mainApp">
<div class="container-fluid">
<div class="row" style="height:100px;">
<div class="col-md-8 col-md-offset-1">
<img src="/Sources/imgs/R1.png" style="height:100px;" />
</div>
<div class="col-md-2">
<div style="margin-top:40px;">
<i class="fa fa-phone fa-2x fa-margin"></i>联系电话:000-11111111
</div>
</div>
</div>
<div class="row" ng-controller="navbarCtrl">
<nav class="navbar navbar-inverse">
<div class="collapse navbar-collapse col-md-offset-1">
<ul class="nav navbar-nav">
<li ng-repeat="menu in topMenu" ng-class="{true: 'dropdown', false: ''}[menu.child!=null]">
<a href="{{menu.url}}">{{menu.name}} <span class="caret" ng-show="menu.child!=null"></span></a>
<ul class="dropdown-menu">
<li ng-repeat="cm in menu.child"><a href="{{cm.url}}">{{cm.name}}</a></li>
</ul>
</li>
</ul>
<form class="navbar-form navbar-right">
<div class="form-group input-group">
<input type="text" class="form-control" placeholder="Search">
<span class="input-group-addon btn"><i class="fa fa-search"></i></span>
</div>
</form>
</div>
</nav>
</div>
<div ng-view=""></div>
<div class="row gray footer">
<div class="col-md-12">
<div class="row" style="padding-top:20px;">
<div class="col-md-offset-1">
<p>友情链接</p>
</div>
</div>
<div class="row">
<div class="col-md-10 col-md-offset-1">
<a class="btn friendLink" style="background-image:url('/Sources/imgs/R1.png')"></a>
<a class="btn friendLink" style="background-image:url('/Sources/imgs/R1.png')"></a>
<a class="btn friendLink" style="background-image:url('/Sources/imgs/R1.png')"></a>
</div>
</div>
<div class="row text-center" style="margin-top:50px;padding-top:10px;padding-bottom:10px;background-color:#524f4f;">
©2015 某某公司 版权所有 沪ICP备某某号 技术支持:fei
</div>
</div>
</div>
</div>
</body>
</html>