I need help with regard to Facelets and specifically the jsfc attribute in HTML tags. I am having difficulty getting understanding if the following will work.
<head jsfc="h:head"> <ui:insert name="head"/> <base href="http://localhost:8080/Jerel-Baker/"/> <link jsfc="h:link" rel='stylesheet' type='text/css' href='styles/style.css'/> <link jsfc="h:link" rel='stylesheet' media='screen and (max-width: 700px)' href='styles/narrow.css' type="text/css"/> <link rel='stylesheet' media='screen and (min-width: 701px) and (max-width: 900px)' href='styles/medium.css' type="text/css"/> <link rel='stylesheet' media='screen and (min-width: 901px)' href="styles/wide.css" type="text/css"/> <title>#{msg.title}</title> </head> When I put a jsfc="h:link" in each of my link elements, the css is not rendered. I would greatly appreciate any help.