In the file main.html, in default project created by Play!, there's this line :
#{get 'moreStyles' /}
I understand that if I need to add more styles, in my view script, I have to use
#{set tag:'value' /}
where tag should be moreStyles, but it seems worng to set the value to the full HTML <link> tag. And what happens if the view needs to add more styles, or scripts?
Thanks!