Difference between revisions of "Liquid Template Variables - template"

From Spiffy Stores Knowledge Base

Line 3: Line 3:
 
For example in the '''blog.liquid''' file, the template type is ''blog''.
 
For example in the '''blog.liquid''' file, the template type is ''blog''.
  
The '''product.liquid''' template returns the type ''product''.
+
Similarly, the '''product.liquid''' template returns the type ''product''.
  
 
For example, you can specify different layout options depending upon which template is being rendered.
 
For example, you can specify different layout options depending upon which template is being rendered.

Revision as of 17:10, 1 September 2008

The template variable returns the current template type.

For example in the blog.liquid file, the template type is blog.

Similarly, the product.liquid template returns the type product.

For example, you can specify different layout options depending upon which template is being rendered.

</ul>{% if template == 'index' %}
<span class="sidebar-title">latest news</span>
<ul id="latest-news">{% for article in blogs.frontpage.articles limit: 6 %}
  <li>
    <a href="{{ article.url }}">{{ article.title | strip_html }}</a>
    <br/>{{ article.content | strip_html | truncate: 70 }}{% endfor %}
  </li>
</ul>{% else %}...