|
1 | | -{% extends "main.html" %} {% block content %} |
| 1 | +<!-- |
| 2 | + Copyright (c) 2016-2021 Martin Donath <martin.donath@squidfunk.com> |
| 3 | +
|
| 4 | + Permission is hereby granted, free of charge, to any person obtaining a copy |
| 5 | + of this software and associated documentation files (the "Software"), to |
| 6 | + deal in the Software without restriction, including without limitation the |
| 7 | + rights to use, copy, modify, merge, publish, distribute, sublicense, and/or |
| 8 | + sell copies of the Software, and to permit persons to whom the Software is |
| 9 | + furnished to do so, subject to the following conditions: |
| 10 | +
|
| 11 | + The above copyright notice and this permission notice shall be included in |
| 12 | + all copies or substantial portions of the Software. |
| 13 | +
|
| 14 | + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 15 | + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
| 16 | + FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE |
| 17 | + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
| 18 | + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
| 19 | + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS |
| 20 | + IN THE SOFTWARE. |
| 21 | +--> |
| 22 | + |
| 23 | +{% extends "main.html" %} |
| 24 | + |
2 | 25 | <link rel="stylesheet" href="{{ 'assets/stylesheets/home.css' | url }}" /> |
3 | 26 |
|
4 | | -<div class="md-container"> |
5 | | - <section> |
6 | | - <div class=home-hero> |
7 | | - <div class=home-hero-text> |
8 | | - <h1>Cloud Native Toolkit</h1> |
9 | | - </div> |
10 | | - <div class=home-hero-image> |
11 | | - </div> |
12 | | - </div> |
13 | | - </section> |
14 | | - <section> |
15 | | - <div class=home-description> |
16 | | - <div class='row'> |
17 | | - <div class='column'> |
18 | | - Cloud-Native Toolkit |
19 | | - </div> |
20 | | - <div class='column'> |
21 | | - The Cloud-Native Toolkit is an open-source collection of assets |
22 | | - that enable application development and support teams to deliver business value |
23 | | - quickly using Red Hat OpenShift or IBM Cloud-managed Kubernetes. |
24 | | - This guide provides information to help Developers, Administrators, |
25 | | - and Site Reliability Engineers use the Toolkit to support delivering business |
26 | | - applications through the entire Software Development Life Cycle (SDLC). |
27 | | - </div> |
28 | | - </div> |
29 | | - </div> |
30 | | - </section> |
31 | | - <section> |
32 | | - <div class=home-purpose> |
33 | | - <div class='row'> |
34 | | - <div class='column'> |
35 | | - Fit to purpose |
36 | | - </div> |
37 | | - <div class='column'> |
38 | | - The Cloud-Native Toolkit environment has been built to support the principles |
39 | | - of a robust SDLC while being flexible enough to fit into a wide range of |
40 | | - development settings and toolchains. The Cloud-Native Toolkit supports different |
41 | | - tool selections, from open source versions of tools like Artifactory and SonarQube to |
42 | | - enterprise-class software like IBM Cloud Pak for Applications and IBM Multicloud Manager. |
43 | | - </div> |
| 27 | +<!-- Tabs --> |
| 28 | +{% block tabs %}{% endblock %} |
| 29 | + |
| 30 | +<!-- Content --> |
| 31 | +{% block content %} |
| 32 | + |
| 33 | +<link rel="stylesheet" href="{{ 'assets/stylesheets/home.css' | url }}" /> |
| 34 | + <!-- Hero for landing page --> |
| 35 | + <section class="mdx-container"> |
| 36 | + <div class="md-grid md-typeset"> |
| 37 | + <div class="mdx-hero"> |
| 38 | + |
| 39 | + <section> |
| 40 | + <div class=home-hero> |
| 41 | + <div class=home-hero-text> |
| 42 | + <h1>Cloud Native Toolkit</h1> |
| 43 | + </div> |
| 44 | + <div class=home-hero-image> |
| 45 | + </div> |
| 46 | + </div> |
| 47 | + </section> |
| 48 | + <section> |
| 49 | + <div class=home-description> |
| 50 | + <div class='row'> |
| 51 | + <div class='column'> |
| 52 | + Cloud-Native Toolkit |
| 53 | + </div> |
| 54 | + <div class='column'> |
| 55 | + The Cloud-Native Toolkit is an open-source collection of assets |
| 56 | + that enable application development and support teams to deliver business value |
| 57 | + quickly using Red Hat OpenShift or IBM Cloud-managed Kubernetes. |
| 58 | + This guide provides information to help Developers, Administrators, |
| 59 | + and Site Reliability Engineers use the Toolkit to support delivering business |
| 60 | + applications through the entire Software Development Life Cycle (SDLC). |
| 61 | + </div> |
| 62 | + </div> |
| 63 | + </div> |
| 64 | + </section> |
| 65 | + <section> |
| 66 | + <div class=home-purpose> |
| 67 | + <div class='row'> |
| 68 | + <div class='column'> |
| 69 | + Fit to purpose |
| 70 | + </div> |
| 71 | + <div class='column'> |
| 72 | + The Cloud-Native Toolkit environment has been built to support the principles |
| 73 | + of a robust SDLC while being flexible enough to fit into a wide range of |
| 74 | + development settings and toolchains. The Cloud-Native Toolkit supports different |
| 75 | + tool selections, from open source versions of tools like Artifactory and SonarQube to |
| 76 | + enterprise-class software like IBM Cloud Pak for Applications and IBM Multicloud Manager. |
| 77 | + </div> |
| 78 | + </div> |
| 79 | + </div> |
| 80 | + </section> |
44 | 81 | </div> |
45 | 82 | </div> |
46 | 83 | </section> |
47 | | -</div> |
| 84 | +{% endblock %} |
48 | 85 |
|
| 86 | +<!-- Application footer --> |
| 87 | +{% block footer %} |
| 88 | +{{ super() }} |
49 | 89 | {% endblock %} |
| 90 | + |
0 commit comments