#244 Just make the Stream tile point to download for now
Merged 2 months ago by spotz. Opened 2 months ago by shaunm.
centos/ shaunm/centos.org stream-download-button  into  staging

@@ -4,48 +4,8 @@ 

  # to CentOS Project distributions.

  #

  - title: "CentOS Stream"

-   page: "centos-stream"

+   download: "/download"

    description: "Continuously delivered distro that tracks just ahead of Red Hat Enterprise Linux (RHEL)."

-   releases:

-     10:

-       downloads:

-     9:

-       downloads:

-         - arch: "x86_64"

-           iso: "https://mirror.stream.centos.org/9-stream/BaseOS/x86_64/iso/CentOS-Stream-9-latest-x86_64-dvd1.iso"

-           rpm: "http://mirror.stream.centos.org/9-stream/"

-           cloud: "https://cloud.centos.org/centos/9-stream/x86_64/images"

-           containers: "https://quay.io/centos/centos:stream9"

-           vagrant: ""

-         - arch: "ARM64 (aarch64)"

-           iso: "https://mirrors.centos.org/mirrorlist?path=/9-stream/BaseOS/aarch64/iso/CentOS-Stream-9-latest-aarch64-dvd1.iso&redirect=1&protocol=https"

-           rpm: "http://mirror.stream.centos.org/9-stream/"

-           cloud: "https://cloud.centos.org/centos/9-stream/aarch64/images"

-           containers: "https://quay.io/centos/centos:stream9"

-           vagrant: ""

-         - arch: "IBM Power (ppc64le)"

-           iso: "https://mirrors.centos.org/mirrorlist?path=/9-stream/BaseOS/ppc64le/iso/CentOS-Stream-9-latest-ppc64le-dvd1.iso&redirect=1&protocol=https"

-           rpm: "http://mirror.stream.centos.org/9-stream/"

-           cloud: "https://cloud.centos.org/centos/9-stream/ppc64le/images"

-           containers: "https://quay.io/centos/centos:stream9"

-           vagrant: ""

-         - arch: "IBM Z (s390x)"

-           iso: "https://mirrors.centos.org/mirrorlist?path=/9-stream/BaseOS/s390x/iso/CentOS-Stream-9-latest-s390x-dvd1.iso&redirect=1&protocol=https"

-           rpm: "http://mirror.stream.centos.org/9-stream/"

-           cloud: "https://cloud.centos.org/centos/9-stream/s390x/images"

-           containers: "https://quay.io/centos/centos:stream9"

-           vagrant: ""

-       docs:

-         - release_notes: "https://blog.centos.org/2021/12/introducing-centos-stream-9/"

-           release_email: "https://lists.centos.org/pipermail/centos-announce/2021-December/060971.html"

-           website: "https://docs.centos.org/en-US/docs/"

-       eol:

-         - overview: >

-             2027-05-31

-             (end of <a href="https://access.redhat.com/support/policy/updates/errata#Life_Cycle_Dates">RHEL 9 Full Support Phase</a>)

-           date: ""

-           url: ""

- 

  - title: "CentOS Hyperscale"

-   page: "hyperscale"

+   page: "/hyperscale"

    description: "CentOS stability built for massively large-scale deployments."

file modified
+5
@@ -41,7 +41,12 @@ 

        <div class="card-body">

          <div class="card-title h5">{{ distro.title }}</div>

          <p class="card-text">{{ distro.description }}</p>

+ {% if distro.page %}

          <a class="btn btn-sm btn-outline-primary text-nowrap stretched-link" href="{{ distro.page }}">Learn more <i class="fa-solid fa-arrow-right"></i></a>

+ {% endif %}

+ {% if distro.download %}

+         <a class="btn btn-sm btn-outline-primary text-nowrap stretched-link" href="{{ distro.download }}"><i class="fa-solid fa-download"></i> Download</a>

+ {% endif %}

        </div>

      </div>

    </div>

We want a splash page for Stream. We don't have it. Empty page bad.

Pull-Request has been merged by spotz

2 months ago