Sha256: 552589d67202607dd981c6ef7ecd81300d987b02759c6fef653679764e60ffcc
Contents?: true
Size: 1.03 KB
Versions: 12
Compression:
Stored size: 1.03 KB
Contents
--- regenerate: false --- {% capture cache %} {% comment %} # ----------------------------------------------------------------------------- # ~/assets/data/font_sizes.json # Liquid JSON template to translate "logical" font size names into their # HTML values (px|em|rem) # # Product/Info: # http://jekyll.one # # Copyright (C) 2020 Juergen Adams # # J1 Template is licensed under the MIT License. # See: https://github.com/jekyll-one-org/J1 Template/blob/master/LICENSE # ----------------------------------------------------------------------------- # Test data: # {{ liquid_var | debug }} # ----------------------------------------------------------------------------- {% endcomment %} {% assign font_sizes = site.data.font_sizes %} { {% for font_size in font_sizes %} {% if forloop.last %} "{{font_size[0]}}": "{{font_size[1]}}" {% else %} "{{font_size[0]}}": "{{font_size[1]}}", {% endif %} {% endfor %} } {% endcapture %} {{ cache | strip_empty_lines }} {% assign cache = nil %}
Version data entries
12 entries across 12 versions & 1 rubygems