6 lines
174 B
Twig
6 lines
174 B
Twig
{% macro stylesheet(path) %}
|
|
{% set path = styles(path) %}
|
|
<link rel="preload" href="{{ path }}" as="style">
|
|
<link rel="stylesheet" href="{{ path }}">
|
|
{% endmacro %}
|