mirror of https://github.com/sipwise/www_csc.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
642 B
22 lines
642 B
[% # config/main
|
|
#
|
|
# This is the main configuration template which is processed before
|
|
# any other page, by virtue of it being defined as a PRE_PROCESS
|
|
# template. This is the place to define any extra template variables,
|
|
# macros, load plugins, and perform any other template setup.
|
|
|
|
IF Catalyst.debug;
|
|
# define a debug() macro directed to Catalyst's log
|
|
MACRO debug(message) CALL Catalyst.log.debug(message);
|
|
END;
|
|
|
|
## # load up any other configuration items
|
|
## PROCESS config/col
|
|
## + config/url;
|
|
|
|
## # set defaults for variables, etc.
|
|
## DEFAULT
|
|
## message = 'There is no message';
|
|
|
|
-%]
|