Sha256: 4405b358007de6e6b69c9237c8c893959d602d33da67ed4a8bbb95f1b91623a2
Contents?: true
Size: 802 Bytes
Versions: 19
Compression:
Stored size: 802 Bytes
Contents
<div class="col browse book"> <div class="block browse-label head"> <p><strong>Book</strong></p> </div> {% assign loop = site.collections | sort: 'weight' %} {% for page in loop %} {% assign weight = page.weight | append: ' ' %} {% assign book = page.label %} {% assign title = book | prepend: weight %} {% assign url = book | prepend: '/' %} {%- unless page.label == 'posts' -%} {% if page.live %} <div class="block browse-lnk"> <a href="{{ url }}" class="lnk browse-book book-{{ book }}">{{ title }}</a> </div> {% else %} <div class="block browse-lnk"> <a href="/" class="lnk browse-book book-{{ book }} draft">{{ title }}</a> </div> {% endif %} {%- endunless -%} {% endfor %} </div>
Version data entries
19 entries across 19 versions & 1 rubygems