mirror of
https://github.com/Shopify/liquid.git
synced 2026-09-15 08:50:45 -07:00
added full profiler suite to liquid based on real-world code form Shopify and vision
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user