summaryrefslogtreecommitdiffstats
path: root/askbot/templates/meta/fonts.html
blob: 1e0fe7078b843ed445c5f6f6e6b1350f85ecedee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% if settings.USE_LOCAL_FONTS %}
    {# this version is for serving fonts locally - e.g. for intranet sites #}
    <style type="text/css">
        @font-face {
            font-family: 'Open Sans Condensed';
            font-style: normal;
            font-weight: 700;
            src: url('{{"/images/OpenSans-CondBold.ttf"|media}}');
        }
    </style>
{% else %}
    {# note: for IE8 we ask for fonts separately #}
    <link href='//fonts.googleapis.com/css?family=Open+Sans+Condensed:700&amp;subset=latin-ext' rel='stylesheet' type='text/css'>
    <link href='//fonts.googleapis.com/css?family=Open+Sans+Condensed:700&amp;subset=cyrillic-ext' rel='stylesheet' type='text/css'>
{% endif %}