Open alanhogan opened 13 years ago
Hi,
You can look at this for more detail. But I will summarize what I think are the important ones here:
source
: The file object.
url
: The expected target url
full_url
: url
prefixed with the site base url mentioned in site.yaml
meta
: Holds all the meta data - inherited from parent node or site and the ones in the page header
source
: The folder object.
url
: The expected target url
full_url
: url
prefixed with the site base url mentioned in site.yaml
meta
: Holds all the meta data - inherited from the site and the ones mentioned in meta.yaml in the folder
walk
- Walks child nodes
walk_resources
- Walks contained resources recusively
site.content
)Apart from the standard Node methods this also has the following lookup methods:
resource_from_relative_path
, resource_from_relative_deploy_path
, resource_from_path
- Lookup a resource object based on path, path relative to content, relative to deploy folder, or full source path respectively.
Similar methods for Node.
Apart from these, these may also have additional properties added by individual plugins. For example, the grouper, tagger and sorter add the walk methods to the Node object.
What properties does a
resource
have? Anode
?