koca / grav-theme-masonry

Masonry, grid-based blog theme for Grav
MIT License
45 stars 8 forks source link

CSS Stylesheets not imported correctly #27

Open adastrame opened 2 years ago

adastrame commented 2 years ago

I had an issue with this theme in that the stylesheets were not correctly imported, they were parsed as <style ... in HTML etc. I fixed this problem by changing lines 29ff of base.html.twig to the following.

        {% block stylesheets %}
            {% do assets.addCss('theme://css/screen.css') %}
        {% endblock %}
        {% block assets deferred %}
            {{ assets.css()|raw }}
        {% endblock %}