How to Inject Variables into all Templates (i.e. Global Variables)

http://symfony.com/doc/current/cookbook/templating/global_variables.html

How to configure a redirect to another route without a custom controller

http://symfony.com/doc/current/cookbook/routing/redirect_in_config.html

CSS3 Transition

.navigation-top > .menu li:hover .menu { /* -webkit-transition: all 500ms cubic-bezier(0.250, 0.100, 0.250, 1.000); przy włączonym flashu nie rozwija się menu pod Chrome 21 */ -moz-transition: all 500ms cubic-bezier(0.250, 0.100, 0.250, 1.000); -ms-transition: all 500ms cubic-bezier(0.250, 0.100, 0.250, 1.000); -o-transition: all 500ms cubic-bezier(0.250, 0.100, 0.250, 1.000); transition: all 500ms cubic-bezier(0.250, 0.100, 0.250, 1.000); }