Sha256: f7b9b4a87a687555a45688c408e1c062fa89c3205a5133689e71ade3bbbf1c36
Contents?: true
Size: 1.54 KB
Versions: 1
Compression:
Stored size: 1.54 KB
Contents
<footer class="footer"> <div class="container"> <div class="row justify-content-center"> {% assign column = site.navbar | where: "name", site.footer_links_column1 %} {% for section in column %} <section class="{{ section.name | downcase }}"> <h4>{{ section.name }}</h4> <ul> {% for item in section.menu %} <li><a href="{{ item.link }}">{{ item.name }}</a></li> {% endfor %} </ul> </section> {% endfor %} {% assign column = site.navbar | where: "name", site.footer_links_column2 %} {% for section in column %} <section class="{{ section.name | downcase }}"> <h4>{{ section.name }}</h4> <ul> {% for item in section.menu %} <li><a href="{{ item.link }}">{{ item.name }}</a></li> {% endfor %} </ul> </section> {% endfor %} <section class="project"> <h4>{{ site.title }}</h4> <p class="lead">{{ site.description }}</p> <div class="lead social"> {% for item in site.footer_links_social %} <a href="{{ item.link }}"><i class="{{ item.icon }}"></i></a> {% endfor %} </div> </section> <section class="copyright"> <p>Copyright © 2020 The CentOS Project | <a href="/legal">Legal</a> | <a href="/legal/privacy">Privacy</a> | <a href="https://git.centos.org/centos/centos.org">Site Source</a></p> </section> </div> </div> </footer>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
jekyll-theme-centos-0.1.14 | _includes/footer.html |