Does anybody know how to enable Foundation Icon Fonts in Ember App ? I tried to put it in vendor folder, in public folder, - still does not work with the below code example:
# application.hbs
<ul class="menu">
<li><a href="#"><i class="fi-list"></i><span>One</span></a></li>
<li><a href="#"><i class="fi-list"></i><span>Two</span></a></li>
<li><a href="#"><i class="fi-list"></i><span>Three</span></a></li>
<li><a href="#"><i class="fi-list"></i><span>Four</span></a></li>
</ul>
I also added the import of the above CSS in ember-cli-build.js:
app.import('vendor/foundation-icons/foundation-icons.css');
Here is how to achive that (if there is a better way to that, it is always welcome):
your_ember_app/public
folder. Thepublic
folder now containsfoundation-icons
folder.Add import to
ember-cli-build.js
just beforereturn app.toTree();
statement as follows:app.import('foundation-icons/foundation-icons.css');
Reference the above CSS in
your_ember_app/app/index.html
page as follows:<link integrity="" rel="stylesheet" href="{{rootURL}}foundation-icons/foundation-icons.css">
Now when everything is in place, you can use an icon in your Ember templates:
{{#link-to 'protected' tagName='li'}} <a><i
class="fi-list"></i><span>Protected Page</span></a> {{/link-to}}