-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
executable file
·131 lines (105 loc) · 4.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<link rel="shortcut icon" href="assets/ico/favicon.png">
<title>Surbris.com</title>
<link href="assets/css/hover_pack.css" rel="stylesheet">
<!-- Bootstrap core CSS -->
<link href="assets/css/bootstrap.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="assets/css/main.css" rel="stylesheet">
<link href="assets/css/colors/color-74c9be.css" rel="stylesheet">
<link href="assets/css/animations.css" rel="stylesheet">
<link href="assets/css/font-awesome.min.css" rel="stylesheet">
<!-- Main Jquery & Hover Effects. Should load first -->
<script src="https://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="assets/js/hover_pack.js"></script>
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[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.3.0/respond.min.js"></script>
<![endif]-->
</head>
<body>
<! ========== HEADERWRAP ====================================================================================================
=============================================================================================================================>
<div id="headerwrap">
<div class="container">
<div class="row centered">
<div class="col-lg-8 col-lg-offset-2 mt">
<h1 class="animation slideDown">
Welcome to
<br>
Surbris.com
</h1>
<h2 class="animation slideDown">
Learn more about <br> what we're about.
</h2>
<p class="mt">
<a href="projects.html" type="button" class="btn btn-cta btn-lg">Projects</a>
<a href="about.html" type="button" class="btn btn-cta btn-lg">About</a>
</p>
</div>
</div><!-- /row -->
</div><!-- /container -->
</div> <!-- /headerwrap -->
<! ========== FOOTER ========================================================================================================
=============================================================================================================================>
<div id="f">
<div class="container">
<div class="row">
<!-- ADDRESS -->
<div class="col-lg-4">
<h4>Our Address</h4>
<p>
123 Any St,<br/>
Winnipeg, MB<br/>
Canada<br/>
</p>
<p>
<i class="fa fa-mobile"></i> +55 4893.8943<br/>
<i class="fa fa-envelope-o"></i> [email protected]
</p>
</div><! --/col-lg-4 -->
<!-- LATEST POSTS -->
<div class="col-lg-4">
<h4>Latest Projects</h4>
<p>
<i class="fa fa-angle-right"></i> A post with an image<br/>
<i class="fa fa-angle-right"></i> Other post with a video<br/>
<i class="fa fa-angle-right"></i> A full width post<br/>
<i class="fa fa-angle-right"></i> We talk about something nice<br/>
<i class="fa fa-angle-right"></i> Yet another single post<br/>
</p>
</div><!-- /col-lg-4 -->
<!-- NEW PROJECT -->
<div class="col-lg-4">
<h4>New Project!</h4>
<a href="#"><img class="img-responsive" src="assets/img/portfolio/port03.jpg" alt="" /></a>
</div><!-- /col-lg-4 -->
</div><! --/row -->
</div><!-- /container -->
</div><!-- /f -->
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="assets/js/bootstrap.min.js"></script>
<script src="assets/js/retina.js"></script>
<script>
$(window).scroll(function() {
$('.si').each(function(){
var imagePos = $(this).offset().top;
var topOfWindow = $(window).scrollTop();
if (imagePos < topOfWindow+400) {
$(this).addClass("slideUp");
}
});
});
</script>
</body>
</html>