Commit 6c6c59c0 authored by Protocole's avatar Protocole
Browse files

Merge branch '116-feedback-on-the-landing-page' into 'latest'

Resolve "Feedback on the landing page"

Closes #116

See merge request go2scale/hub!55
parents d2e23c69 e3b2b503
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
# 🗂 Index

Jobs index. They are sorted using the [HUB default stages](/getting-started#stages).
Jobs index. They are sorted using the [HUB default stages](/use-the-hub#stages).

## 🔎 Static tests

+2 −2
Original line number Diff line number Diff line
@@ -8,7 +8,7 @@

1. <Your steps>
2. Add the corresponding URL to your `.gitlab-ci.yml` file (see [Getting
   started](/getting-started)). Example:
   started](/use-the-hub)). Example:

    ```yaml
    include:
@@ -16,7 +16,7 @@
    ```

3. If you need to customize the job (stage, variables, ...) 👉 check the [jobs
   customization](/getting-started/#jobs-customization)
   customization](/use-the-hub/#jobs-customization)
4. Well done, your job is ready to work ! 😀

## Job details
+1 −1
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@ You can use them for any kind of software and deployment type. Each job can be
customized through configuration.

* 🚀 Start using jobs from the hub: [Use the HUB](/use-the-hub)
* 🙋 Contribute to the hub: [Contributing](/contributing)
<!-- * 🙋 Contribute to the hub: [Contributing](/contributing) -->

## Overview

+20 −21
Original line number Diff line number Diff line
@@ -146,6 +146,20 @@
    .tx-hero h1 {
        font-size: 1.4rem;
    }
    .tx-hero_buttons a:first-child {
      width: 180px;
      display:block;
      margin: auto;
      text-align: center;
  }

    .tx-hero_buttons a:nth-child(2) {
        width: 220px;
        display:block;
        margin: auto;
        margin-top: 15px;
        text-align: center;
    }
}
.tx-hero__content {
    padding-bottom: 6rem;
@@ -170,30 +184,15 @@
    .tx-hero__image {
        transform: translateX(8rem);
    }
}
@media screen
  and (max-width: 29.9375em)  {
    .tx-hero_buttons {
          display:block;
          /* display: flex; */
          /* justify-content: center; */
        display: flex;
    }

      .tx-hero_buttons a:first-child {
        width: 180px;
        display:block;
        margin: auto;
        text-align: center;
}

      .tx-hero_buttons a:nth-child(2) {
          width: 220px;
          display:block;
          margin: auto;
          margin-top: 15px;
          text-align: center;
@media screen and (min-width: 29.9375em) {
    .tx-hero_buttons {
        display: flex;
    }

}
.tx-hero .md-button {
    margin-top: 0.5rem;
+6 −6
Original line number Diff line number Diff line
@@ -65,7 +65,7 @@ An example of a full `.gitlab-ci.yml` file with:

* One job template with latest version. Note that `latest/` is optional in the
  job URL
* One job template with specific version using tag `2020-08-05_1`
* One job template with specific version using tag `0.1.0`
* Your own local `unit_tests` job

``` yaml
@@ -78,8 +78,8 @@ stages:

# Jobs from g2s hub
include:
  - remote: 'https://jobs.go2scale.io/latest/docker.yml'
  - remote: 'https://jobs.go2scale.io/2020-08-05_1/mkdocs.yml'
  - remote: 'https://jobs.go2scale.io/latest/docker_build.yml'
  - remote: 'https://jobs.go2scale.io/0.1.0/mkdocs.yml'

# You can also include your own local jobs
unit_tests:
@@ -110,7 +110,7 @@ the hub. Follow the [customization section](#jobs-customization) to do it.
Each jobs of the hub can be customized. To do it, you have to include the job
URL as usual and, in addition, override the options you want to customize.

For example, if you want to use the [trivy](/jobs/dynamic_tests/trivy/) job and
For example, if you want to use the [trivy_image](/jobs/dynamic_tests/trivy_image/) job and
customize it by:

* Redefining the `stage` to `security` to fit in your personal stages workflow
@@ -121,9 +121,9 @@ customize it by:

```yaml
include:
  - remote: 'https://jobs.go2scale.io/trivy.yml'
  - remote: 'https://jobs.go2scale.io/trivy_image.yml'

trivy:
trivy_image:
  stage: security
  variables:
    TRIVY_VERSION: "0.9.1"
Loading