Sha256: 3932515eafe70140de5032b760b4752ca58800e3d46d18c4886a9ee2d3d226fd

Contents?: true

Size: 1.86 KB

Versions: 1

Compression:

Stored size: 1.86 KB

Contents

<footer class="footer pt-3 bg-dark small text-light">
  <div class="container">
    <div class="row justify-content-between mt-4 pt-4">
      <div class="col-lg-3 mb-5">
        <a class="navbar-brand" href="{{ site.baseurl }}/{{ site.data.centos.identity.logo.link }}"><img role="img" src="{{ site.baseurl }}/{{ site.data.centos.identity.logo.navbar }}" height="32" alt="{{ site.data.centos.identity.title }}" /><span class="manifestation">{{ site.data.centos.identity.logo.manifestation }}</span></a>
        <p class="my-3">{{ site.data.centos.identity.description }}</p>
        <ul class="nav list-unstyled d-flex">
          {% for item in site.data.centos.footer.social %}
          <li class="nav-item me-4 fs-5">
            <a href="{{ item.link }}" role="button" aria-label="{{ item.name }}" class="link-light"><i class="{{ item.icon }}"></i></a>
          </li>
          {% endfor %}
        </ul>
      </div>

      {% assign sections = site.data.centos.navbar | where: "visible_on", "footer" %}
      {% for section in sections %}
      <div class="col-sm-12 col-lg-3 mb-3">
        <h6 class="text-uppercase fw-bold">{{ section.name }}</h6>
        <ul class="nav flex-column">
          {% for item in section.menu %}
          <li class="nav-item my-1"><a href="{{ item.link }}" class="px-0 link-light">{{ item.name }}</a></li>
          {% endfor %}
        </ul>
      </div>
      {% endfor %}
    </div>

    <div class="row py-3">
      <div class="col">
        <span id="copyright_mark">Copyright &copy;</span> <span id="copyright_year"></span> <span id="copyright_author">{{ site.data.centos.footer.copyright.author }}</span> {% for item in site.data.centos.footer.copyright.legals %} | <span id="copyright_legals_{{ forloop.index }}" class="nav-item"><a href="{{ item.link }}" class="link-light">{{ item.text }}</a></span>{% endfor %}
      </div>
    </div>
  </div>
</footer>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
jekyll-theme-centos-2.3.0.beta.70 _includes/footer.html