Sha256: b692bafd7a45bb1327b0da99592bdcfad6e38d42424148372269e1e9a992fc60

Contents?: true

Size: 812 Bytes

Versions: 1

Compression:

Stored size: 812 Bytes

Contents

{% capture NOOUT %}
  {% assign types = "head body mono" | split: " " %}
  {% for type in types %}
    {% assign specs = site.empty_array %}
    {% for font in site.data.theme.font[type].families %}
      {% assign name = font.name | prepend: '"' | append: '"' %}
      {% assign specs = specs | push: name %}
    {% endfor %}
    {% assign specs = specs | push: site.data.theme.font.head.default | join: ", " %}
    {% case type %}
      {% when "head" %}
        {% assign font_head = specs %}
      {% when "body" %}
        {% assign font_body = specs %}
      {% when "mono" %}
        {% assign font_mono = specs %}
    {% endcase %}
  {% endfor %}
  {% assign font_mono_size = site.data.theme.font.mono.size %}
  {% assign font_mono_line_height = site.data.theme.font.mono.line-height %}
{% endcapture %}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
jekyll-theme-polar-1.0.0 _includes/variables/fonts.liquid