Difference between revisions of "Blog.liquid"

From Spiffy Stores Knowledge Base

 
Line 1: Line 1:
This template renders a blog and its articles.
+
This template renders a [[Liquid Template Variables - blog|blog]] and its [[Liquid Template Variables - article|articles]].
  
 
Blogs are a collection of articles. Each blog can have its own feed (RSS and/or Atom) that visitors can subscribe to.
 
Blogs are a collection of articles. Each blog can have its own feed (RSS and/or Atom) that visitors can subscribe to.

Latest revision as of 18:08, 16 September 2008

This template renders a blog and its articles.

Blogs are a collection of articles. Each blog can have its own feed (RSS and/or Atom) that visitors can subscribe to.

You will want to iterate through all the articles of a blog to show their content:

{% for article in blog.articles  %}
   ...do things with article, e.g. render its content with
   {{ article.content }}
{% endfor %}

Variables

In blog.liquid you have access to the following variables:

  • blog - The current blog being displayed.
  • handle - The handle of the blog.

In addition, all global variables are available.