Sha256: be458524f05439420da8c21a6041254f9385c5430d8f11a71346066fee2ccc08
Contents?: true
Size: 1.65 KB
Versions: 4
Compression:
Stored size: 1.65 KB
Contents
{% comment %} # ----------------------------------------------------------------------------- # ~/_includes/templates/j1/modules/footers/boxes/links_box.proc # Liquid PROCEDURE to create a links box for the footer # # Product/Info: # http://jekyll.one # # Copyright (C) 2019 Juergen Adams # # Licensed under the Creative Commons Attribution 3.0 Unported License. # See: http://creativecommons.org/licenses/by/3.0/. # # ----------------------------------------------------------------------------- # Test data: # liquid_var: {{ liquid_var | debug }} # ----------------------------------------------------------------------------- {% endcomment %} {% comment %} Liquid procedures -------------------------------------------------------------------------------- {% endcomment %} {% comment %} Variables -------------------------------------------------------------------------------- {% endcomment %} {% assign title = include.title %} {% assign links = include.links %} {% comment %} Main ================================================================================ {% endcomment %} <!-- [INFO ] [links_box.proc ] [ place links box ] --> <div class="col-md-{{footer_box_width_md}}"> <div class="heading-footer"><h2 class="notoc">{{title}}</h2></div> <ul class="list-unstyled footer-link-list"> {% for property in links %} {% comment %} <!-- proc - property.link: {{ property.link }} --> {% endcomment %} <li> <a href="{{property.link.href}}" target="_blank">{{property.link.title}}</a> <div style="color: #555;"><small>{{property.link.tagline}}</small></div> </li> {% endfor %} </ul> </div>
Version data entries
4 entries across 4 versions & 1 rubygems