This repository has been archived by the owner on Nov 19, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
designers.html
74 lines (61 loc) · 2.24 KB
/
designers.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Fine Uploader For Designers</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Homepage for Fine Uploader For Designers" />
<meta name="keywords" content="fineuploader for designers">
<link href='https://fonts.googleapis.com/css?family=Maven+Pro' rel='stylesheet' type='text/css'>
<link href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap.min.css" rel="stylesheet">
<!--[if IE 8]>
<link rel="stylesheet" type="text/css" href="css/ie8.css" >
<![endif]-->
<link href="css/custom.css" rel="stylesheet">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script src="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/js/bootstrap.min.js"></script>
<script src="js/jquery.tipsy.min.js"></script>
</head>
<body>
<div class="jumbotron-small fixed">
<div class="container">
<div id="navbar"></div>
</div>
</div>
<div class="container marketing">
<h1>Fine Uploader For Designers</h1>
<hr class="no-margin">
<hr class="no-margin">
<div class="spacer"></div>
<div class="row-fluid">
Coming soon!
</div>
<div class="spacer"></div>
</div>
<div id="footer"></div>
<script>
$('.dropdown-toggle').dropdown();
$.get('./navbar.html', function(data) {
$('#navbar').html(data);
if (window.location.hash == '') {
$('#navbar').find('li').eq(0).addClass('active');
} else {
$('#navbar').find('a[href$="' + window.location.hash + '"]').parent().addClass('active');
}
}); $.get('./header.html', function(data) {
$('#header').html(data);
});
$.get('./footer.html', function(data) { $('#footer').html(data); });
$(document).ready(function () {
$(document).on('click', '#navbar a', function() {
if ($(this).attr('href').indexOf('./#') == 0) {
$('#navbar li').removeClass('active');
$(this).parent().addClass('active');
}
});
$('a.tip').tipsy();
});
</script>
</body>
</html>