Difference between revisions of "Liquid Template Variables - page title"

From Spiffy Stores Knowledge Base

(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...)
(No difference)

Revision as of 17:55, 11 September 2008

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>