{% comment %} # ----------------------------------------------------------------------------- # ~/_includes/templates/j1/modules/footers/boxes/legal_statements.proc # Liquid PROCEDURE to create a legal statements line 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 footer_config = include.footer_config %} {% comment %} Main --------------------------------------------------------------- {% endcomment %} {% for item in footer_config %} {% for issue in item.issue_info %} {% if issue.enabled %}

{{issue.text}} {{site.time | date: "%A, %d %B %Y"}}

{% endif %} {% endfor %} {% endfor %}