1---
2filter: erb
3---
4A partial has access to the page from which it was called. The title below will be the title of the page in which this partial is rendered.
5
6<%%= h(@page.title) %>
7
8A partial does not have access to it's own meta-data. The partial meta-data is used primarily for finding partials or for use in other pages. The filter(s) specified in the meta-data will be applied to the partial text when it is rendered.
9
10A partial does not require meta-data at all. They can contain just text.
11