- Timestamp:
- 01/18/06 18:45:19 (6 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/trax/vendor/trax/templates/scaffolds/generator_templates/layout.phtml
r113 r117 3 3 <html> 4 4 <head> 5 <title>Scaffolding : <? =$controller_name ?></title>5 <title>Scaffolding : <?php echo $controller_name ?></title> 6 6 <style> 7 7 body { background-color: #fff; color: #333; } … … 82 82 <body> 83 83 84 < ? if(Session::isset_flash("notice")): ? >85 <p style="color: green">< ? =Session::flash("notice") ? ></p>86 < ? elseif(Session::isset_flash("error")): ? >87 <p style="color: red">< ? =Session::flash("error") ? ></p>88 < ? endif; ? >84 < ?php if(Session::isset_flash("notice")): ? > 85 <p style="color: green">< ?php echo Session::flash("notice") ? ></p> 86 < ?php elseif(Session::isset_flash("error")): ? > 87 <p style="color: red">< ?php echo Session::flash("error") ? ></p> 88 < ?php endif; ? > 89 89 90 < ? =$content_for_layout ? >90 < ?php echo $content_for_layout ? > 91 91 92 92 </body>
