I’ve inherited an app that has this haml to pull in an index.html.haml file for the “home” controller.
= fl
- if logged_in?
= render :partial => 'logged_in_home'
- else
= render :partial => 'marketing_home'
The if statement is clear, but what is the = fl doing? I can’t find that anywhere in haml documentation or by googling it.
= flis not a built-in haml method. You could try to see if it defined in any of the following places: