<a href="{{ page.path }}">{{ page.title }}</a>
=> <a href="current/page/path">Current page</a>Please notice that this is a relative path for this page. We suggest you always to use absolute addresses on your site, which will be generated for you by Edicy assuring less broken links. Absolute path for page can be retrieved by using url variable (see below).
Returns parent page of the current page or nothing if page is already a top-level page. Returned object is also page type of object.
Go <a href="{{ page.parent.url }}">up one level</a><html>
<body>
<header>{% editable page.site_header %}</header>
<div>{% content %}</div>
</body>
</html><html>
<head>
<title>{{ page.site_title }}</title>
</head>
...
</html>Returns title for given page
<html><head><title>{{ page.title }}</title></head>...</html>
=> <html><head><title>Current page</title></head>...</html>Returns URL for given page.
<a href="{{ page.url }}">{{ page.title }}</a>
=> <a href="/site_prefix/current/page/path">Current page</a>Returns a date when this page was first created. Use date formatting filter to format the date.
Returns a date when this page was last updated. Useful for showing "last updated" timestamps. Use date formatting filter to format the date.
This page was last updated at <b>{{ page.updated_at | date : "%d.%m.%Y" }}</b>
=> This page was last updated at <b>09.11.2008</b>