{% if page.path == "index.html" %} {{ page.title }} {% elsif page.title.size > 25 %} {{ page.title }} - Quill {% else %} {{ page.title }} - Quill Rich Text Editor {% endif %} {% include meta.html %} {% assign sections = content | split: '' %} {% for section in sections %} {% assign mod = forloop.index | modulo: 2 %} {% if mod == 0 %} {{ section | strip }} {% endif %} {% endfor %} {% include analytics.html %} {% include header.html %} {% assign heads = content | split: '' %} {% for head in heads %} {% if forloop.last != true %} {% assign headMod = forloop.index | modulo: 2 %} {% if headMod == 1 %} {{ head | strip }} {% endif %} {% else %} {% assign scripts = head | split: '' %} {% for script in scripts %} {% assign scriptMod = forloop.index | modulo: 2 %} {% if scriptMod == 1 %} {{ script | strip }} {% endif %} {% endfor %} {% endif %} {% endfor %} {% include footer.html %} {% assign sections = content | split: '' %} {% for section in sections %} {% assign mod = forloop.index | modulo: 2 %} {% if mod == 0 %} {{ section | strip }} {% endif %} {% endfor %}