forked from smashwilson/docs-developer-blog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
149 lines (146 loc) · 6.75 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
---
layout: default
title: Rackspace Developer Center
bodyClass: home
headline: |
Spin Up <span data-headline-typer="['OnMetal Servers', 'Containers', 'MongoDB', 'ElasticSearch']"><span class="word">OnMetal Servers</span></span> Easier with Rackspace
tagline: >
From innovative products to a full suite of reliable cloud products, Rackspace has the right infrastructure to finish your next project. <br>
<a href="https://cart.rackspace.com/cloud" class="get-started">Sign up</a>
<a href="https://www.rackspace.com/lp/enhancedarchitecturereview" class="gcp-campaign">Limited time:<br> Request a free GCP-certified architecture review</a>
---
<div class="box docs-apis">
<div class="container">
<h1>Developer Documentation</h1>
<p>Whether you’re just getting started with the Rackspace Cloud or looking for reference on a product you’ve been using for a while, we’ve got the right documentation to get you on your way.</p>
<div class="tools-promos">
<div class="promo sdks">
<div class="card yellow">
<div class="card-content">
<div class="card-image">
{% include svgs/hexagon-rocket.svg %}
</div>
<h3 class="card-title">SDKs & Tools</h3>
<div class="card-subtitle">
<span>SDKs</span>
</div>
<div class="card-body">
<p>We have SDKs for most major dev platforms, including Java, .NET, Node.js, PHP, Python, and Ruby.</p>
<a href="/docs/#sdks" class="card-action">Explore tools</a>
</div>
</div>
</div>
</div>
<div class="promo apis">
<div class="card red">
<div class="card-content">
<div class="card-image">
{% include svgs/hexagon-terminal.svg %}
</div>
<h3 class="card-title">Product Guides</h3>
<div class="card-subtitle">
<span>APIs</span>
</div>
<div class="card-body">
<p>Learn the capabilities of our APIs with Getting Started, Reference, and
Developer guides.</p>
<a href="/docs" class="card-action">Read product guides</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="box rack-cli">
<div class="container">
<div class="cli-grid">
<div class="cli-image">
<div data-rack-cli-graphic>
<img src="{% asset_path rack-cli-static.png %}" alt="Rack CLI">
</div>
</div>
<div class="cli-text">
<h2>Rack CLI</h2>
<p>“Rack”, the Rackspace command-line tool, makes it easy to explore and interact with the public cloud</p>
<ul>
<li>Integrates with Bash for advanced scripting interactions</li>
<li>Quick and easy way to explore our APIs without writing an entire program</li>
</ul>
<div class="action">
<a href="/docs/rack-cli/configuration/#installation-and-configuration" class="download-button">Download</a>
<a href="/docs/rack-cli/" class="info-button">Learn more</a>
</div>
</div>
</div>
</div>
</div>
<div class="box blog">
<div class="container">
<div class="headline">
<h2>News</h2>
</div>
<div data-tab-set>
<div class="tab-buttons">
<ul>
<li>
<a href="#" data-tab-link="blog">Blog</a>
</li>
<li>
<a href="#" data-tab-link="news"><span class="wordy">Product </span>News</a>
</li>
</ul>
</div>
<div class="tabs">
<div data-tab="blog">
<ul class="blog-posts">
{% for post in site.posts limit: 4 %}
<li class="blog-post">
<div class="post-avatar{% if post.authorIsRacker %} racker{% endif %}">
{% if post.authorAvatar %}
<img src="{{ post.authorAvatar }}" alt="{{ post.author }}">
{% else %}
<img src="{% asset_path avatar-default.svg %}" alt="Placeholder Avatar">
{% endif %}
</div>
<h4 class="post-title"><a href="{{ BASE_PATH }}{{ post.url }}">{{ post.title }}</a></h4>
<div class="post-info">
<div class="post-byline"><a class="post-author" href="/blog/authors/{{ post.author | downcase | replace: ' ', '-' }}">{{ post.author }}</a> | <time datetime="{{ post.date | date: "%F" }}">{{ post.date | date: "%B %-d, %Y" }}</time></div>
{% assign categoryCount = post.categories | size %}
{% if categoryCount > 0 %}
Posted in:
<ul class="post-categories">
{% for category in post.categories %}
<li><a href="/blog/categories/{{ category | replace: ' ', '-' }}">{{ category }}</a></li>
{% endfor %}
</ul>
{% endif %}
</div>
</li>
{% endfor %}
</ul>
<p class="big-button"><a href="/blog/">View All Blog Posts</a></p>
</div>
<div data-tab="events" data-ng-controller="UpcomingEventsCtrl as events">
{% raw %}
{% endraw %}
</div>
<div data-tab="news" data-ng-controller="ProductNewsCtrl as news">
{% raw %}
<ul class="blog-posts">
<li class="blog-post" data-ng-repeat="article in news.articles | limitTo : 4">
<h4 class="post-title"><a data-ng-href="{{ article.link }}">{{ article.title }}</a></h4>
<div class="post-info">
<div class="post-byline"><time datetime="">{{ article.date | date : 'MMMM d, yyyy' }}</time></div>
</div>
</li>
</ul>
<p class="big-button">
<a href="https://blog.rackspace.com/channels/product-and-development/">Read All News</a>
</p>
{% endraw %}
</div>
</div>
</div>
</div>
</div>