This repository has been archived by the owner on Jun 6, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
137 lines (106 loc) · 4.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>stacks</title>
<!-- Bootstrap -->
<link rel="stylesheet" type="text/css" href="assets/css/bootstrap.min.css">
<!-- Main Style -->
<link rel="stylesheet" type="text/css" href="assets/css/main.css">
<!-- Responsive Style -->
<link rel="stylesheet" type="text/css" href="assets/css/responsive.css">
<!--Icon Fonts-->
<link rel="stylesheet" media="screen" href="assets/fonts/font-awesome/font-awesome.min.css"/>
<!-- Extras -->
<link rel="stylesheet" type="text/css" href="assets/extras/animate.css">
<link rel="stylesheet" type="text/css" href="assets/extras/lightbox.css">
<!-- jQuery Load -->
<script src="assets/js/jquery-min.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.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body data-spy="scroll" data-offset="20" data-target="#navbar">
<!-- Nav Menu Section -->
<div class="logo-menu">
<nav class="navbar navbar-default navbar-fixed-top" role="navigation" data-spy="affix" data-offset-top="50">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header col-md-3">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#home"></i>stacks</a>
</div>
<div class="collapse navbar-collapse" id="navbar">
<ul class="nav navbar-nav col-md-4 pull-right">
<li><a href="https://stacks.readthedocs.io/en/latest/">Docs</a></li>
<li><a href="https://github.com/cfstacks/stacks">Code</a></li>
</ul>
</div>
</div>
</nav>
</div>
<!-- Nav Menu Section End -->
<!-- Hero Area Section -->
<section id="hero-area">
<div class="container">
<div class="row">
<div class="col-md-12">
<h1 class="title">stacks</h1>
<h2 class="subtitle">Manage AWS CloudFormation Stacks sanely</h2>
<div class="col-md-6 col-sm-6 col-xs-12 animated fadeInLeft">
<p>Stacks is a CloudFormation management tool. Templates are written in
YAML with Jinja2 syntax. Stacks does not abstract CloudFormation
supported resources.</p>
<a href="https://stacks.readthedocs.io/en/latest/" class="btn btn-primary btn-lg">Learn More</a>
</div>
<div class="col-md-6 col-sm-6 col-xs-12 animated fadeInRight delay-0-5">
<p>Stacks is written in Python 3. Please get involved in making stacks better.</p>
<a href="https://github.com/cfstacks/stacks" class="btn btn-primary btn-lg">Contribute</a>
</div>
</div>
</div>
</div>
</section>
<!-- Hero Area Section End-->
<!-- Service Section -->
<section id="features">
<div class="container text-center">
<div class="row">
<h1 class="title">Features</h1>
<h2 class="subtitle">Missing pieces from CloudFormation</h2>
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-12">
<div class="service-item">
<li class="text-left">Templates written in YAML</li>
<li class="text-left">With added Jinja2 flexibility</li>
<li class="text-left">Cross-stack resource referencing</li>
<li class="text-left">Code snippets support</li>
</div>
</div>
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-12">
<div class="service-item">
<li class="text-left">Multiple environments</li>
<li class="text-left">Flexible configuration</li>
<li class="text-left">Events streaming</li>
</div>
</div>
</div>
</div>
</section>
<!-- Bootstrap JS -->
<script src="assets/js/bootstrap.min.js"></script>
<!-- Smooth Scroll -->
<!-- Smooth Scroll -->
<script src="assets/js/smooth-scroll.js"></script>
<script src="assets/js/lightbox.min.js"></script>
<!-- All JS plugin Triggers -->
<script src="assets/js/main.js"></script>
</body>
</html>