Skip to content
rnmp edited this page Feb 29, 2012 · 5 revisions

Partial templates separate out re-usable and repeatable blocks of html into their own files. They sit within the {{{/templates/partials}}} folder.

Stacey essentially flattens the folder structure within {{{/templates/partials}}}, so you can place your partial files within whatever subfolders make sense to you. This also means that you cannot have two templates with the same name, even if they sit within different folders, or have different file extensions.

Partials can be referenced within a template by using a {{{:}}} followed by the filename of the partial template.

As with templates, partials do not need to be .html files. Stacey will recognise the following formats: {{{.html}}}, {{{.json}}}, {{{.xml}}}, {{{.atom}}}, {{{.rss}}}, {{{.rdf}}} & {{{.txt}}}

== Partial Nesting Partials references can also be nested within other partials. So, an example :media partial could contain:

//This is being updated//

/templates/partials/assets/media.html {{{ if $images do :images endif … if $video do :video endif }}}

Where {{{:images}}} & {{{:video}}} are references to other partial files.

== Recursive Partials Partials can also include references to themselves, allowing you to recurse through nested objects (ie. walking down a tree of $children).

A more elegant solution to the nested foreach loop example would be to split the code into two partials and take advantage of recursion within the :children partial.

/templates/partials/navigation/navigation.html {{{

    foreach $root do
  1. @page_name :children
  2. endforeach
}}}

/templates/partials/navigation/children.html {{{ if $children do

    foreach $children do
  1. @page_name :children
  2. endforeach
endif }}} Note that the {{{children.html}}} partial includes a reference to itself, which means it will keep including itself (within itself) until the if statement no longer returns true.
Clone this wiki locally