{% include hr.html %}

<footer class=“footer”>

<div class="container">
  <div class="row">
    <section class="sponsor">
      <div class="sponsor__message">
      <h6><i class="fas fa-hand-holding-heart"></i> Sponsors</h6>
      <p>CentOS would not be possible without the support of our sponsors. We would like to thank the following product/service for being a CentOS sponsor. If you value our work, please consider <a href="/sponsors">becoming a sponsor</a>!</p>
      </div>

      <div class="sponsor__logo">
      <div class="carousel">
      <div class="card">
      <div class="carousel slide carousel-fade" data-ride="carousel" id="carousel-1">
        <div class="carousel-inner" role="listbox">
        {% for sponsor in site.sponsors %}
        <div class="carousel-item {{ sponsor.status }}"><a href="{{ sponsor.address }}" rel="nofollow"><img class="img-fluid" src="{{ sponsor.logo }}"></a></div>
        {% endfor %}
        </div>
        </div>
      </div>
      </div>
      </div>
    </section>
  </div>
  <div class="row">

    {% if site.data.centos.footer.columns %}
    {% for column in site.data.centos.footer.columns %}
    {% assign links = site.data.centos.navbar | where: "name", column %}
    {% for section in links %}
    <section class="links">
      <h6><i class="{{ section.icon }}"></i> {{ section.name }}</h6>
      <ul>
        {% for item in section.menu %}
        <li><a href="{{ item.link }}">{{ item.name }}</a></li>
        {% endfor %}
      </ul>
    </section>
    {% endfor %}
    {% endfor %}
    {% endif %}

    <section class="project">
      <h4>{{ site.title }}</h4>
      <p class="lead">{{ site.description }}</p>
      <div class="lead social">
        {% for item in site.data.centos.footer.social %}
        <a href="{{ item.link }}"><i class="{{ item.icon }}"></i></a>
        {% endfor %}
      </div>
    </section>

  </div>

  <div class="row">
    <section class="copyright">
      <p>Copyright &copy; {{ site.time | date: "%Y" }} {{ site.data.centos.footer.copyright.author }} {% for item in site.data.centos.footer.copyright.legals %} | <a href="{{ item.link }}">{{ item.text }}</a>{% endfor %}</p>
    </section>
  </div>
</div>

{% include top.html %}

</footer>