b:get.metadata

<b:get.metadata />

Displays received content's metadata from b:get.

This tag is used inside <b:get> to display content's metadata.

<b:get.metadata.field> works exactly the same as <b:get.field>, but this receives metadata from the structure table.

b:get.metadata tags

b:get.metadata.path

<b:get.metadata.path />
Content's relative path to the site root.

b:get.metadata.url

<b:get.metadata.url />
Content's URL relative to the domain.

b:get.metadata.name

<b:get.metadata.name />
Content's human readable name

b:get.metadata.parent

<b:get.metadata.parent />
Content's parent's relative path to the site root

b:get.metadata.position

<b:get.metadata.position />
Content's position as ordered in Bildy's content browser

b:get.metadata.datamodel

<b:get.metadata.datamodel />
Name of the content's data model

b:get.metadata.id

<b:get.metadata.id />
Content's id

b:get.metadata.template

<b:get.metadata.template />
Id of the content's template

b:get.metadata.published

<b:get.metadata.published />
Content's publishing status

b:get.metadata.created

<b:get.metadata.created />
Time stamp of content's creation date

b:get.metadata.modified

<b:get.metadata.modified />
Time stamp of content's last modification date

Examples

See also example in <b:getdata.field>.

Example 1

<p>All the car children of currently loaded page:</p>
<ul>
<b:get from="cars" name="car" parent="<b:env.url/>">
<li><a href="<b:car.metadata.url/>"><b:car.make/> <b:car.model/></a></li>
</b:get>
</ul>