Interface | Description |
---|---|
Page |
Very simplistic definition of a page.
|
StringFormat |
Interface that any string formatting class able to process
BasePage tag options must implement. |
TemplatePage |
Class | Description |
---|---|
BasePage |
Base class for the HTML templates.
|
Module |
Any dynamic module that can be called by the
BasePage to show some dynamic content must extend this class. |
ModulePage |
Wrapper class for HTML templates loaded from modules.
|
BasePage
is used to load a template from disk (or memory) and fill it with dynamic values. By default
the parsed templates are cached, but you can explicitly disable this behavior (in the application development phase). Dynamic values
can be processed by functions, that in the code are implementations of StringFormat
. Please check the description of
BasePage and the lazyj.page.tags package for more details.