This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
glasnost/templates/default/misc.tal

14 lines
677 B
Tal

<p metal:define-macro="poweredBy" id="powered-by-glasnost"><a tal:attributes="href aboutUrl">Glasnost</a></p>
<span metal:define-macro="breadCrumb"
tal:define="objectPath getPathToObject(currentObject)"
tal:condition="objectPath">
<span tal:condition="exists('breadCrumbPrefix')" tal:replace="breadCrumbPrefix" />
<div tal:condition="currentObject" tal:omit-tag="" tal:repeat="o objectPath">
<a tal:attributes="href o.getUrl()" tal:content="o.label">breadCrumb</a> &rarr;
</div>
<span tal:condition="currentObject" tal:replace="currentObject.label">here</span>
<a href="/" tal:reroot="href" tal:translate="" tal:condition="not currentObject">Home</a>
</span>