Ferreteria/v0.5/@cls/cTitle: Difference between revisions

From Woozle Writes Code
< Ferreteria‎ | v0.5‎ | @cls
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 9: Line 9:
This encapsulates a &lt;[https://htmldog.com/references/html/tags/title/ title]&gt; tag. It has an opener/closer pair with content, but never any attributes. The content is just the string for the browser to display as its page title (usually in the window frame).
This encapsulates a &lt;[https://htmldog.com/references/html/tags/title/ title]&gt; tag. It has an opener/closer pair with content, but never any attributes. The content is just the string for the browser to display as its page title (usually in the window frame).
==Config==
==Config==
* <code>GetTagName()</code> returns "title".
* {{l/ver/meth|layout/tag|GetTagName}} returns "title".
* <code>GetTagTail()</code> returns an empty string.
* {{l/ver/meth|layout/tag|GetTagTail}} returns an empty string.
* <code>RenderValue()</code> returns the ArgPod's Value element value.
* {{l/ver/meth|layout/event|RenderValue}} returns the ArgPod's Value element value.

Latest revision as of 20:01, 18 July 2022

Ferreteria class ferret\layout\html\tag\cTitle
caClosable cTitle

About

This encapsulates a <title> tag. It has an opener/closer pair with content, but never any attributes. The content is just the string for the browser to display as its page title (usually in the window frame).

Config