Update to fade out the welcome log in message

This commit is contained in:
tlw72 2011-01-17 22:45:39 +00:00
parent d7531738c8
commit 82e39d2087
2 changed files with 17 additions and 3 deletions

View file

@ -10,7 +10,13 @@
<div id="wrapper-content" role="main">
<#if flash?has_content>
<section id="flash-message" role="alert">
${flash}
</section>
<#if flash?starts_with("Welcome") >
<section id="welcome-message" role="alert">
${flash}
</section>
<#else>
<section id="flash-message" role="alert">
${flash}
</section>
</#if>
</#if>