-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathindex.html
79 lines (77 loc) · 2.9 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
{% set cssdir = './common/css/' %}
{% extends "templates/indexbase.tmpl" %}
{% block pagetitle %}Current{% endblock %}
{% block title %}{% endblock %}
{% block content %}
<div class="jumbotron">
<div class="container">
<h2>Welcome to OpenIO Documentation</h2>
<p>
OpenIO is an open source cloud platform for all sizes of platforms, which aims to be easy to use, install and connect with your applications.
</p>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-9">
<h2>Documentation for OpenIO</h2>
</div>
</div>
</div>
<div class="container">
<div class="row docs-toc">
<div class="col-md-6">
<div class="docs-section">
<h3>Install Guides OpenIO SDS</h3>
<p>How to install an OpenIO platform</p>
<a href="/install-guide-centos/">Installation Guide OpenIO SDS for CentOS</a>
<p>CentOS 7</p>
<a href="/install-guide-debian">Installation Guide OpenIO SDS for Debian</a>
<p>Debian 8 Jessie</p>
<a href="/install-guide-ubuntu">Installation Guide OpenIO SDS for Ubuntu</a>
<p>Ubuntu 16.04 Xenial</p>
<a href="/install-guide-raspbian">Installation Guide OpenIO SDS for Raspbian</a>
<p>Raspbian 8 Jessie</p>
<a href="/install-guide-x1-raspbian">Installation Guide OpenIO SDS (Standalone) for Raspbian</a>
<p>Raspbian 8 Jessie</p>
</div>
<div class="docs-section">
<h3>Install Guides Swift/S3 Gateway</h3>
<p>How to install the OpenIO Swift/S3 gateway</p>
<a href="/install-swift-s3-centos/">Installation Guide Swift/S3 Gateway for CentOS</a>
<p>CentOS 7</p>
<a href="/install-swift-s3-debian">Installation Guide Swift/S3 Gateway for Debian</a>
<p>Debian Jessie</p>
<a href="/install-swift-s3-ubuntu">Installation Guide Swift/S3 Gateway for Ubuntu</a>
<p>Ubuntu 16.04</p>
</div>
</div>
<div class="col-md-6">
<div class="docs-section">
<h3>Try it!</h3>
<a href="/docker-image/">Official OpenIO SDS Docker image</a>
<p>Deploy a namespace in a single container</p>
<a href="/vagrant-box/">Official OpenIO SDS Vagrant box</a>
<p>Easiest way to have an OpenIO SDS instance up and running</p>
</div>
<div class="docs-section">
<h3>Contributor Guides</h3>
<a href="/project-guide/">OpenIO Project Guide</a>
<p>Guide to the OpenIO project and community</p>
</div>
<div class="docs-section">
<h3>User Guides</h3>
<a href="/user-guide/">User Guide</a>
<p>Learn how to use OpenIO</p>
<a href="/admin-guide/">Administration Guide</a>
<p>Learn how to configure and operate OpenIO SDS</p>
<a href="/arch-design/">Architecture Design</a>
<p>Find more about the architecture and design principles behind OpenIO</p>
<a href="/cli-reference">Command-Line Interface Reference</a>
<p>Documentation for OpenIO command-line clients</p>
</div>
</div>
</div>
<hr>
</div>
{% endblock content %}