Html ページ:
<h:outputStylesheet library="css" name="bootstrap/fonts/glyphicons-halflings-regular.eot"></h:outputStylesheet>
<h:outputStylesheet library="css" name="bootstrap/fonts/glyphicons-halflings-regular.svg"></h:outputStylesheet>
<h:outputStylesheet library="css" name="bootstrap/fonts/glyphicons-halflings-regular.ttf"></h:outputStylesheet>
<h:outputStylesheet library="css" name="bootstrap/fonts/glyphicons-halflings-regular.woff"></h:outputStylesheet>
<h:outputStylesheet library="css" name="bootstrap/fonts/glyphicons-halflings-regular.woff2"></h:outputStylesheet>
CSS の場合 (別の .css ファイルで @font-face をオーバーライドできます。bootstrap.css には触れないでください):
@font-face {
font-family: 'Glyphicons Halflings';
src: url("#{resource['css:bootstrap/fonts/glyphicons-halflings-regular.eot']}");
src: url("#{resource['css:bootstrap/fonts/glyphicons-halflings-regular.eot']}?#iefix") format('embedded-opentype'),
url("#{resource['css:bootstrap/fonts/glyphicons-halflings-regular.woff']}") format('woff'),
url("#{resource['css:bootstrap/fonts/glyphicons-halflings-regular.ttf']}") format('truetype'),
url("#{resource['css:bootstrap/fonts/glyphicons-halflings-regular.svg']}#glyphicons_halflingsregular") format('svg');
}
一般的な使用:
#{resource['<resource name>']}
また
#{resource['<library name>:<resource name>']}