include site-wide css files before page-specific css
This commit is contained in:
parent
4c62c42955
commit
b5826fea49
@ -48,14 +48,14 @@
|
|||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if page.css %}
|
{% if site.site-css %}
|
||||||
{% for css in page.css %}
|
{% for css in site.site-css %}
|
||||||
<link rel="stylesheet" href="{{ css | relative_url }}">
|
<link rel="stylesheet" href="{{ css | relative_url }}">
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
{% if site.site-css %}
|
{% if page.css %}
|
||||||
{% for css in site.site-css %}
|
{% for css in page.css %}
|
||||||
<link rel="stylesheet" href="{{ css | relative_url }}">
|
<link rel="stylesheet" href="{{ css | relative_url }}">
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
Loading…
Reference in New Issue
Block a user