From b5826fea4947c335223a7a45ba456a3153932e27 Mon Sep 17 00:00:00 2001 From: Dean Attali Date: Wed, 19 Aug 2020 23:19:54 -0400 Subject: [PATCH] include site-wide css files before page-specific css --- _includes/head.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/_includes/head.html b/_includes/head.html index 302d4ae..6c29ce5 100644 --- a/_includes/head.html +++ b/_includes/head.html @@ -48,14 +48,14 @@ {% endfor %} {% endif %} - {% if page.css %} - {% for css in page.css %} + {% if site.site-css %} + {% for css in site.site-css %} {% endfor %} {% endif %} - - {% if site.site-css %} - {% for css in site.site-css %} + + {% if page.css %} + {% for css in page.css %} {% endfor %} {% endif %}