Sha256: d27dd481309b7dbc1ae4ba655b2bc801ccd20dfd7f9c1d7d05f5ddfaff8c5395
Contents?: true
Size: 406 Bytes
Versions: 3
Compression:
Stored size: 406 Bytes
Contents
{% assign postsByYearMonth = site.posts | group_by_exp: "post", "post.date | date: '%B %Y'" %} <div class="archive"> {% for yearMonth in postsByYearMonth %} <h2>{{ yearMonth.name }}</h2> <ul> {% for post in yearMonth.items %} <li><a href="{{ post.url | prepend: site.url }}">{{ post.title }}.</a> <span class="lead">{{ post.lead }}</span></li> {% endfor %} </ul> {% endfor %} </div>
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
cvless-2.4.0 | _includes/archive.html |
cvless-2.3.0 | _includes/archive.html |
cvless-2.2.0 | _includes/archive.html |