Sha256: b913ed03a6be4a3b2776a4d3d492da1248ca3ed4838c4e9ef68bab394d7259d3
Contents?: true
Size: 872 Bytes
Versions: 2
Compression:
Stored size: 872 Bytes
Contents
<div id="page"> <h2>{{page.title}}</h2> {% paginate blog.articles by 20 %} {% for article in blog.articles %} <div class="article"> <div class="headline"> <h3 class="title"> <a href="{{article.url}}">{{ article.title }}</a> </h3> <h4 class="date">Posted on {{ article.created_at | date: "%B %d, '%y" }} by {{ article.author }}.</h4> </div> <div class="article-body textile"> {{ article.content | strip_html | truncate: 250 }} </div> {% if blog.comments_enabled? %} <p style="text-align: right"><a href="{{article.url}}#comments">{{ article.comments_count }} comments</a></p> {% endif %} </div> {% endfor %} <div id="pagination"> {{ paginate | default_pagination }} </div> {% endpaginate %} </div>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
liquor-0.1.1 | performance/tests/dropify/blog.liquid |
liquor-0.1.0 | performance/tests/dropify/blog.liquid |