Sha256: 39a37f62fda27a92999e5522fea97d8411b1826f794458d6e2a575803a4a49b5
Contents?: true
Size: 859 Bytes
Versions: 1
Compression:
Stored size: 859 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> {% end %} </div> {% end %} <div id="pagination"> {{ paginate | default_pagination }} </div> {% end %} </div>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
drnic-liquid-2.1.0 | performance/tests/dropify/blog.liquid |