{*
Message
This template is used to display one message.
There can be several Message, but each one is based on this template.
To simplify message formatting, we just assign a css-class (the type) to the div container.
The core assigns several types; they are documented in the LCC_Message class comment.
"Captions" are set between "<b>" tags, you may redesign them in the designs css file.
Example for $message:
"<b>Error:</b> This is just an example"
Variables assigned by the core:
$message The message about to be rendered
*}
<div class="lcc_message_{$message->getType()}">
{$message->getMessage()}
</div>