areguera / centos / centos.org

Forked from centos/centos.org 4 years ago
Clone
Blob Blame History Raw
---
# Feel free to add content and custom Front Matter to this file.
# To modify the layout, see https://jekyllrb.com/docs/themes/#overriding-theme-defaults

title: The CentOS Project
title_lead: |
  Community-driven free software effort focused on delivering a robust open
  source ecosystem around a Linux platform.
layout: home

with_toc: false
with_breadcrumbs: false
with_title: false
---

<div class="row">
  {% assign distributions = site.data.download.cards %}
  {% for distro in distributions %}
  {% if forloop.first %}
  <div class="col-sm-12 mb-3">
  {% else %}
  <div class="col-sm-6 mb-3">
  {% endif %}
    <div class="card">
      <img src="{{ site.baseurl }}/assets/img/download/distribution-release-screenshot-1.png" class="card-img-top" alt="...">
      <div class="card-header h5">{{ distro.title }}</div>
      <div class="card-body">
        <p class="card-text">{{ distro.description }}</p>
        <a class="btn btn-sm btn-outline-primary text-nowrap" role="button" href="" role="button" aria-label="Learn more">Learn more <i class="fa-solid fa-arrow-right"></i></a>
      </div>
    </div>
  </div>
  {% endfor %}
</div>

## Special Interest Groups

{% assign topics = site.data.centos.sigs %}
{% include base/topics.html topics=topics %}

## News

{% for post in site.data.centos.blog.items limit: 4 %}
<div class="card border-0">
  <div class="card-body ps-0 py-1">
    <h5 class="card-title">{% include base/link.html name=post.title url=post.link %}</h5>
    <p class="small">by {{ post.author }} @ {{ post.pubDate }} </p>
  </div>
</div>
{% endfor %}

## Videos

<div class="row">
  <div class="col mb-3">
    <div class="ratio ratio-16x9">
      <iframe src="https://www.youtube.com/embed?listType=user_uploads&list=TheCentOSProject" frameborder="0" allowfullscreen></iframe>
    </div>
  </div>
</div>