2015-03-27 08:08:58 -04:00
|
|
|
<%#
|
|
|
|
The fonts are loaded outside of the stylesheet so that we can dynamically change the path.
|
|
|
|
This is to get around CDN caching on the Origin:
|
2013-02-11 06:41:23 -05:00
|
|
|
|
2015-03-27 08:08:58 -04:00
|
|
|
https://forums.aws.amazon.com/thread.jspa?threadID=114646
|
2013-02-11 06:41:23 -05:00
|
|
|
|
2015-03-27 08:08:58 -04:00
|
|
|
Also added a cache breaker there in case we have breaking config changes
|
|
|
|
&1 was added last when the nginx sample config changed
|
|
|
|
%>
|
2013-02-11 06:41:23 -05:00
|
|
|
|
2015-03-27 11:33:15 -04:00
|
|
|
<% font_domain = "#{request.protocol}#{request.host_with_port}&2" %>
|
2013-02-11 06:41:23 -05:00
|
|
|
|
|
|
|
<style>
|
|
|
|
@font-face {
|
|
|
|
font-family: 'FontAwesome';
|
2016-04-11 04:37:17 -04:00
|
|
|
src: url('<%=asset_path "fontawesome-webfont.woff2" %>?<%= font_domain %>&v=4.5.0') format('woff2'),
|
2016-04-11 05:00:16 -04:00
|
|
|
url('<%=asset_path "fontawesome-webfont.woff" %>?<%= font_domain %>&v=4.5.0') format('woff');
|
2013-02-11 06:41:23 -05:00
|
|
|
}
|
2013-02-25 11:42:20 -05:00
|
|
|
</style>
|