Sha256: 9475d7f4320e4077cc1db455a676f264ab03ad70a46b171087607975df6feaad
Contents?: true
Size: 1.58 KB
Versions: 13
Compression:
Stored size: 1.58 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 links = include.links %} {% comment %} Main --------------------------------------------------------------- {% endcomment %} <!-- [INFO ] [j1.assets.data.footer ] [Found LinksBox. Process LinksBox] --> <div class="col-md-{{footer_box_width_md}}"> <!-- LinksBox --> <div class="heading-footer"><h2 class="notoc">{{title}}</h2></div> <ul class="list-unstyled footer-link-list"> {% for link in links %} <li> <a href="{{link.url}}" target="_blank">{{link.title}}</a> <div style="color: #555;"><small>{{link.tagline}}</small></div> </li> {% endfor %} </ul> </div> <!-- End LinksBox -->
Version data entries
13 entries across 13 versions & 2 rubygems