Sha256: 3a6c4f59480e6e58c439b19e91cc41ac6e96a4edd7d214e3508fc18b7d585f2d
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.copyright.author }} {% for item in site.copyright.links %} | <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.16 | _includes/footer.html |