-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
145 lines (117 loc) · 4.21 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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!DOCTYPE html>
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]-->
<!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!--><html lang="en"> <!--<![endif]-->
<head>
<!-- Basic Page Needs
================================================== -->
<meta charset="utf-8">
<title>Your Page Title Here :)</title>
<meta name="description" content="">
<meta name="author" content="">
<!-- Mobile Specific Metas
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- CSS
================================================== -->
<link rel="stylesheet" href="stylesheets/base.css">
<link rel="stylesheet" href="stylesheets/skeleton.css">
<link rel="stylesheet" href="stylesheets/layout.css">
<link rel="stylesheet" href="stylesheets/main.css">
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Favicons
================================================== -->
<link rel="shortcut icon" href="images/favicon.ico">
<link rel="apple-touch-icon" href="images/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="72x72" href="images/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="images/apple-touch-icon-114x114.png">
</head>
<body>
<!-- Primary Page Layout
================================================== -->
<!-- Delete everything in this .container and get started on your own site! -->
<div class="full-width hero">
<div class="container">
<!-- <div class="header">
<div class="six columns logo">
<img src="images/bowery-logo-light.png" width="50px">
</div>
<div class="seven columns offset-by-three nav">
<ul>
<li><h5>Help</h5></li>
<li><h5>Blog</h5></li>
<li><h5>Download</h5></li>
</ul>
</div>
</div>
--> <!-- header -->
<div class="five columns offset-by-eleven">
<img src="images/bowery-logo-light.png" width="50px">
<h1>Dropbox for your server.</h1>
<h3>Install the Bowery server script.</h3>
<a href="#" class="download button"><img src="images/package.png" class="package">Download</a>
</div>
</div><!-- container -->
</div><!-- full-width hero -->
<div class="full-width desktop"></div>
<div class="bowery-menubar"></div>
<div class="full-width features">
<div class="container">
<div class="five columns">
hi
</div>
<div class="ten columns offset-by-one">
<h2>Bowery makes developing a complex app on a remote server easy.</h2>
<h3>Stop using some hack-y rsync / git hooks / FTP solution. With Bowery, you can write code and see it built instantly.</h3>
<h3>Get a local development experience with code running somewhere far, far away.</h3>
<hr>
</div>
<br class="clear" />
<div class="five columns">
hi
</div>
<div class="ten columns offset-by-one">
<h2>Choose a local directory.</h2>
<h3>Pick what files you want to sync and run on your server.</h3>
<hr>
</div>
<br class="clear" />
<div class="five columns">
hi
</div>
<div class="ten columns offset-by-one" data-scroll-reveal="">
<h2>Choose a remote directory.</h2>
<h3>Tell Bowery your remote server's IP address, the directory on that server you want to sync to, and the build/run steps you want to be executed each time it syncs.</h3>
<hr>
</div>
<br class="clear" />
<div class="five columns">
hi
</div>
<div class="ten columns offset-by-one">
<h2>Build something awesome.</h2>
<h3>Each time you make changes to your code locally, your application will updated. Easy as pie.</h3>
</div>
</div>
</div>
<!-- End Document
================================================== -->
<script src='scripts/scrollReveal.min.js'></script>
<script>
var config = {
after: '0s',
enter: 'bottom',
move: '24px',
over: '0.66s',
easing: 'ease-in-out',
viewportFactor: 0.33,
reset: true,
init: true
};
window.scrollReveal = new scrollReveal( config );
</script>
</body>
</html>