Radical Design Course by Jack McDade

From the creator of Statamic

Learn how to make your websites standout and be remembered.

Bought Jack McDade's course on design. Going through it now...and it is SO well done!

— Justin Jackson, Transistor.fm

Dictionary Tag

Allows you to loop through options from a Dictionary.

This tag allows you to loop through options from a Dictionary.

{{ dictionary handle="countries" }}
{{ label }} {{ value }}
{{ /dictionary }}

You can also use the shorthand syntax for this:

{{ dictionary:countries }}
{{ label }} {{ value }}
{{ /dictionary:countries }}

You can also output any additional data provided by the Dictionary, like emoji or region in the case of the Countries dictionary:

{{ dictionary:countries }}
{{ emoji }} {{ name }} in {{ region }}
{{ /dictionary:countries }}

Searching

{{ dictionary:countries search="Aus" }}
{{ label }} {{ value }}
{{ /dictionary:countries }}
🇦🇺 Australia AUS
🇦🇹 Austria AUT

Conditions

{{ dictionary:countries region:is="Europe" }}
{{ label }} {{ value }}
{{ /dictionary:countries }}

There are a bunch of conditions available to you, like :is, :isnt, :contains, :starts_with, and :is_before. There are many more than that. In fact, there's a whole page dedicated to conditions - check them out.

Paginating

To enable pagination mode, add the paginate parameter with the number of options in each page.

{{ dictionary:countries paginate="10" as="countries" }}
{{ countries }}
{{ label }}<br>
{{ /countries }}
 
{{ paginate }}
<a href="{{ prev_page }}">⬅ Previous</a>
 
{{ current_page }} of {{ total_pages }} pages
(There are {{ total_items }} posts)
 
<a href="{{ next_page }}">Next ➡</a>
{{ /paginate }}
{{ /dictionary:countries }}

In pagination mode, your options will be scoped (in the example, we're scoping them into the countries tag pair). Use that tag pair to loop over the options in that page.

The paginate variable will become available to you. This is an array containing data about the paginated set.

Variable Description
next_page The URL to the next paginated page.
prev_page The URL to the previous paginated page.
total_items The total number of options.
total_pages The number of paginated pages.
current_page The current paginated page. (ie. the x in the ?page=x param)
auto_links Outputs an HTML list of paginated links.
links Contains data for you to construct a custom list of links.
links:all An array of all the pages. You can loop over this and output {{ url }} and {{ page }}.
links:segments An array of data for you to create a segmented list of links.

Query Scopes

Doing something custom or complicated? You can create query scopes to narrow down those results with the query_scope or filter parameter:

{{ dictionary:countries query_scope="your_query_scope" }}

You should reference the query scope by its handle, which is usually the name of the class in snake case. For example: YourQueryScope would be your_query_scope.

Files

One of the powerful things you can do with the Files dictionary is pull in options from a JSON, YAML or CSV file.

{{ dictionary:file filename="products.json" label="Name" value="Code" paginate="5" }}

Parameters

handle

string
required

The handle of the dictionary you wish to get options from.

sort

string

Sort options by field name (or random). You may pipe-separate multiple fields for sub-sorting and specify sort direction of each field using a colon. For example, sort="name" or sort="date:asc|name:desc" to sort by date then by name.

limit

integer

Limit the total results returned.

filter|query_scope

string

Apply a custom query scope You should specify the query scope's handle, which is usually the name of the class in snake case. For example: MyAwesomeScope would be my_awesome_scope.

offset

integer

Skip a specified number of results.

paginate

boolean|int *false*

Specify whether your options should be paginated. You can pass true and also use the limit param, or just pass the limit directly in here.

page_name

string *page*

The query string variable used to store the page number (ie. ?page=).

on_each_side

int *3*

When using pagination, this specifies the max number of links each side of the current page. The minimum value is 1.

as

string

Alias your options into a new variable loop.

scope

string

Scope your options with a variable prefix.

*

string

Any additional parameters will be set as config options on the Dictionary.

Docs feedback

Submit improvements, related content, or suggestions through Github.

Betterify this page →