Sha256: a6bbd8c81bfb71e785e2eeb8468b352a6e110b66d2cdbd101063e9a2ce9ed816
Contents?: true
Size: 1.97 KB
Versions: 3
Compression:
Stored size: 1.97 KB
Contents
{% comment %} # ----------------------------------------------------------------------------- # ~/_includes/templates/j1/blocks/footer/boxes/links_box.proc # Liquid PROCEDURE to create a links box for the footer # # Product/Info: # http://jekyll.one # # Copyright (C) 2020 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 tagline = include.tagline %} {% 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 --> <h2 class="g-text-upper g-color-white-opacity-0_9 g-font-size-18 g-font-weight-500 g-mb-0">{{title}}</h2> <p class="tagline mb-0"> <large>{{tagline}}</large> </p> <div class="d-inline-block g-width-50 g-height-2 uno-bg-primary g-mb-5"></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" rel="noopener noreferrer">{{property.link.title}}</a> <div style="color: #555;"><small>{{property.link.tagline}}</small></div> </li> {% endfor %} </ul> </div>
Version data entries
3 entries across 3 versions & 1 rubygems