Sha256: 008b8ba15bbfb06f51c2e0379ee35028abcb13ab2a69383d0ef978fb4875266f
Contents?: true
Size: 1.57 KB
Versions: 1
Compression:
Stored size: 1.57 KB
Contents
<footer class="footer"> <div class="container"> <div class="row"> {% assign column = site.navbar | where: "name", site.footer_links.column1 %} {% for section in column %} <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 %} {% assign column = site.navbar | where: "name", site.footer_links.column2 %} {% for section in column %} <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 %} <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> </div> <div class="row"> <section class="copyright"> <p>Copyright © {{ site.time | date: "%Y" }} {{ site.title }} {% for item in site.footer_links.copyright %} | <a href="{{ item.link }}">{{ item.text }}</a>{% endfor %}</p> </section> </div> </div> </footer>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
jekyll-theme-centos-0.1.15 | _includes/footer.html |