Sha256: a0d3769bdc67fe3fe466687c05b7ccc6c57b8ea634af14cd9321b6f6e23d54b6
Contents?: true
Size: 1.3 KB
Versions: 24
Compression:
Stored size: 1.3 KB
Contents
{% assign items = 0 %} {% assign inline = false %} {% assign output = false %} {%- for item in page.roller -%} {%- if item.inline -%} {% assign inline = true %} {%- endif -%} {%- if item.input -%} {% assign items = items | plus : 1 %} {%- endif -%} {%- if item.output -%} {% assign output = true %} {%- endif -%} {%- endfor -%} <ul class="list roller input {{ PageChapter | prepend : 'chapter-' }} {% if inline %}{{ items | prepend : 'split-' }}{% endif %}"> {%- for item in page.roller -%} {%- if item.input -%} {% assign label = item.input | replace : ' ','-' | downcase %} <li class="item roller input {{ label | prepend : 'title-' }}"> {{ item.input }} </li> {%- endif -%} {%- endfor -%} </ul> {%- if output -%} <ul class="list roller output {{ PageChapter | prepend : 'chapter-' }} {% if inline %}{{ items | prepend : 'split-' }}{% endif %}"> {%- for item in page.roller -%} {%- if item.input -%} {% assign label = item.input | replace : ' ','-' | downcase %} {%- endif -%} {%- if item.output -%} <li class="item roller output {{ label | prepend : 'title-' }}"> {{ item.output }} </li> {%- endif -%} {%- endfor -%} </ul> {%- endif -%}
Version data entries
24 entries across 24 versions & 1 rubygems