summaryrefslogtreecommitdiffstats
path: root/askbot/skins/default/templates/meta/html_head_stylesheets.html
blob: 9d5aebad9aa32fb9444edad59345d3de7c03f365 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<link href="{{"/style/style.css"|media }}" rel="stylesheet/less" type="text/css" />
<script type="text/javascript" src="{{"/js/less.min.js"|media}}"></script>
{{ skin.get_extra_css_link() }}
{% if settings.USE_CUSTOM_CSS %}
    <link 
        href="{% url "custom_css" %}?v={{settings.MEDIA_RESOURCE_REVISION}}"
        rel="stylesheet"
        type="text/css"
    />
{% endif %}
{% if user_messages %}
<style type="text/css">
    body { margin-top:2.4em; }
</style>
{% endif %}