Liquid Template Variables - page title

From Spiffy Stores Knowledge Base

Revision as of 17:55, 11 September 2008 by Admin (talk | contribs) (New page: The '''page_title''' variable returns the current page title. You would most likely use this in your theme.liquid file to provide a unique page title for each of your pag...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

The page_title variable returns the current page title.

You would most likely use this in your theme.liquid file to provide a unique page title for each of your pages.

<head>
<title>{{shop.name}} - {{page_title}}</title>
...
</head>