Sha256: 55832d4e0486fc94a9987d5e346b35edb35be95ae43b35da66c06a1ae8c8ffef

Contents?: true

Size: 358 Bytes

Versions: 1

Compression:

Stored size: 358 Bytes

Contents

{% comment %}
Adds a non-breaking space before the final word in titles to prevent widows.
{% endcomment %}

{% assign words = include.title | split: " " %}
{% if words.size > 2  %}
  {% for word in words %}{% if forloop.last %} {% else %} {% endif %}{{ word }}{% endfor %}
{% else %}
  {% for word in words %}
    {{ word }}
  {% endfor %}
{% endif %}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
jekyll-theme-elementary-blog-1.0.1 _includes/title.html