mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 17:25:44 +00:00
19 lines
967 B
Django/Jinja
19 lines
967 B
Django/Jinja
<link href="{{ url_for('static', filename='external/material-design-icons/css/material-icons.css') }}" rel="stylesheet">
|
|
<link href="{{ url_for('static', filename='external/materialize/css/materialize.min.css') }}" rel="stylesheet">
|
|
{% if current_user.is_authenticated -%}
|
|
<link href="{{ url_for('static', filename='materialize/css/sidenav-fixed.css') }}" rel="stylesheet">
|
|
{% endif -%}
|
|
<link href="{{ url_for('static', filename='materialize/css/sticky-footer.css') }}" rel="stylesheet">
|
|
<link href="{{ url_for('static', filename='materialize/css/fixes.css') }}" rel="stylesheet">
|
|
<link href="{{ url_for('static', filename='nopaque-icons/css/nopaque-icons.css') }}" rel="stylesheet">
|
|
<link href="{{ url_for('static', filename='css/queryBuilder.css') }}" rel="stylesheet">
|
|
{% assets
|
|
filters='pyscss',
|
|
output='gen/app.%(version)s.css',
|
|
'css/colors.scss',
|
|
'css/helpers.scss',
|
|
'css/style.css'
|
|
-%}
|
|
<link href="{{ ASSET_URL }}" rel="stylesheet">
|
|
{% endassets -%}
|