forked from tsuru/tsuru.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·177 lines (120 loc) · 5.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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<!-- Scripts -->
<link rel="stylesheet" href="http://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css">
<!-- Styles -->
<link rel="stylesheet" href="resources/styles/application.css">
<link rel="stylesheet" media="only screen and (min-width: 320px)" href="resources/styles/small.css">
<link rel="stylesheet" media="only screen and (min-width: 720px)" href="resources/styles/medium.css">
<link rel="stylesheet" media="only screen and (min-width: 1024px)" href="resources/styles/large.css">
<title>Tsuru</title>
</head>
<body>
<header id="header" class="section">
<div class="container">
<h1 class="brand">
<img class="brand-image" src="resources/images/brand.svg" alt="Tsuru">
</h1>
<nav class="navigation">
<ul class="navigation-items">
<li class="navigation-item"><a class="navigation-link scroll-btn" href="#features" title="Features">Features</a></li>
<li class="navigation-item"><a class="navigation-link scroll-btn" href="#community" title="Community">Community</a></li>
<li class="navigation-item"><a class="navigation-link" href="http://docs.tsuru.io/en/latest/" title="Documentation">Documentation</a></li>
</ul>
</nav>
</div>
</header>
<section id="hero" class="section">
<div class="container">
<p>Tsuru is an extensible and open source Platform as a Service software.</p>
<footer>
<a class="button github" href="https://github.com/globocom/tsuru" title="Tsuru on Github">
<i class="button-icon fa fa-github"></i> View on Github
</a>
</footer>
</div>
</section>
<main id="content">
<article id="features" class="content-section section">
<div class="content-container container">
<header class="section-header">
<h1 class="section-title">Features</h1>
</header>
<section class="feature column">
<header class="feature-header">
<h1 class="section-subtitle feature-title">Deploy</h1>
</header>
<p class="feature-description">Fast and secure. The entire process is really simple with no special tools needed, just a simple git push.</p>
<footer>
<a class="section-button button" href="http://docs.tsuru.io/en/latest/" title="Learn more">Learn more</a>
</footer>
</section>
<section class="feature column">
<header class="feature-header">
<h1 class="section-subtitle feature-title">Scale</h1>
</header>
<p class="feature-description">Scaling in Tsuru is completely painless. Just add a unit and Tsuru will take care of everything else.</p>
<footer>
<a class="section-button button" href="http://docs.tsuru.io/en/latest/" title="Learn more">Learn more</a>
</footer>
</section>
<section class="feature column">
<header class="feature-header">
<h1 class="section-subtitle feature-title">Extend</h1>
</header>
<p class="feature-description">Tsuru is built to be extensible. Through services you can provide anything your application needs.</p>
<footer>
<a class="section-button button" href="http://docs.tsuru.io/en/latest/" title="Learn more">Learn more</a>
</footer>
</section>
</div>
</article>
<article id="community" class="content-section section">
<div class="content-container container">
<header class="section-header">
<h1 class="section-title">Community</h1>
</header>
<p class="section-leader">Tsuru is an open source project and, as such, we welcome contributions. Feel free to report or fix bugs, contribute to the documentation, or just give your opinion about the software.</p>
<ul class="social container">
<li class="social-item mail column">
<a class="social-link" href="https://groups.google.com/forum/?fromgroups#!forum/tsuru-users" title="Tsuru general mailing list">
<i class="social-icon icon fa fa-envelope"></i>
General mailing list
</a>
</li>
<li class="social-item mail column">
<a class="social-link" href="https://groups.google.com/forum/?fromgroups#!forum/tsuru-dev" title="Tsuru development mailing list">
<i class="social-icon icon fa fa-envelope"></i>
Development mailing list
</a>
</li>
<li class="social-item irc column">
<a class="social-link" href="http://webchat.freenode.net/" title="Tsuru IRC channel">
<i class="social-icon icon fa fa-comments"></i>
#tsuru on Freenode
</a>
</li>
<li class="social-item twitter column">
<a class="social-link" href="https://twitter.com/tsurupaas" title="Tsuru on twitter">
<i class="social-icon icon fa fa-twitter"></i>
Twitter
</a>
</li>
<li class="social-item google-plus column">
<a class="social-link" href="https://plus.google.com/118205831863820582274" title="Tsuru on Google+">
<i class="social-icon icon fa fa-google-plus"></i>
Google+
</a>
</li>
</ul>
</div>
</article>
</main>
<footer id="footer">
</footer>
<script src="https://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="resources/js/tsuruio.js"></script>
</body>
</html>