include site-wide css files before page-specific css

This commit is contained in:
Dean Attali 2020-08-19 23:19:54 -04:00 committed by GitHub
parent 4c62c42955
commit b5826fea49
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

View File

@ -48,14 +48,14 @@
{% endfor %}
{% endif %}
{% if page.css %}
{% for css in page.css %}
{% if site.site-css %}
{% for css in site.site-css %}
<link rel="stylesheet" href="{{ css | relative_url }}">
{% endfor %}
{% endif %}
{% if site.site-css %}
{% for css in site.site-css %}
{% if page.css %}
{% for css in page.css %}
<link rel="stylesheet" href="{{ css | relative_url }}">
{% endfor %}
{% endif %}