-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·77 lines (69 loc) · 2.44 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
---
layout: default
sidebar: false
---
<header class="masthead">
<div class="container">
<div class="row">
<div class="col-sm-8 col-sm-offset-2">
<div class="header-content">
<div class="header-content-inner">
<h1>Jets: The Ruby Serverless Framework</h1>
<h2>Ruby on Jets allows you to create and deploy serverless services with ease, and to seamlessly glue AWS services together with the most beautiful dynamic language: Ruby. It includes everything you need to build an API and deploy it to AWS Lambda. Jets leverages the power of Ruby to make serverless joyful for everyone.</h2>
<a href="{% link docs.md %}" class="btn btn-outline btn-xl">Learn More!</a>
</div>
</div>
</div>
<div class="col-sm-4">
<img src="/img/logos/jets-logo.png" class="homepage-logo" />
</div>
</div>
</div>
</header>
{% include example.html %}
{% include commands.html %}
<section class="learning-content">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading">Learning Content</h2>
</div>
<div class="col-lg-12">
<div class="article-box">
<div class="exclusives">
<div class="article-box">
<div class="row">
{% assign home_articles = site.data.intro_series | concat: site.data.tutorial_series | concat: site.data.articles %}
{% assign posts = home_articles %}
{% for post in posts limit: 99 %}
<div class="col-md-4">
<div class="related-body">
<div class="related-thumbnail">
<a href="{{ post.url }}">
<img src="{{ post.thumbnail }}" class="center-crop" />
</a>
</div>
<span class="related-link">
<a href="{{ post.url }}">{{ post.title }}</a>
</span>
</div>
</div>
{% endfor %}
</div>
<div class="related-filler"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="cta">
<div class="cta-content">
<div class="container">
<h2>Learn More</h2>
<a href="{% link getting-started.md %}" class="btn btn-outline btn-xl">Get Started</a>
</div>
</div>
<div class="overlay"></div>
</section>