I have a JSF page which include <head>...</head>
from another page. Basically it's looks like this:
<ui:include src="/path/head.xhtml"/>
<h:body>
...
</h:body>
I want to add unique <meta name="description" content="Unique content">
to each page which use <ui:include src="/path/head.xhtml"/>
.
I have 2 ideas:
- Can I put
<meta name="description".../>
to head-page and overwrite it on include-pages? - Or maybe I can put somehow this
<meta.../>
from include pages to head?