Sha256: 2ffd19e27ea894d663f9c6f33eda922e3c4c6b05a44ddc1adba5ccf5c4f204d7

Contents?: true

Size: 1.06 KB

Versions: 2

Compression:

Stored size: 1.06 KB

Contents

---
regenerate:                             false
---

{% capture j1_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) 2019 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 j1_font_sizes = site.data.j1_font_sizes %}
{
{% for font_size in j1_font_sizes %}

  {% if forloop.last %}
  "{{font_size[0]}}": "{{font_size[1]}}"
  {% else %}
  "{{font_size[0]}}": "{{font_size[1]}}",
  {% endif %}

{% endfor %}
}
{% endcapture %}

{{ j1_cache | strip_empty_lines }}
{% assign j1_cache = nil %}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
j1_template-2019.4.4 lib/starter_web/assets/data/font_sizes.json
j1_template-2019.4.1 lib/starter_web/assets/data/font_sizes.json