ext-css.html 302 B

1234567
  1. {% if include.css.sri %}
  2. <link href="{{ include.css.href }}" rel="stylesheet" integrity="{{ include.css.sri }}" crossorigin="anonymous">
  3. {% elsif include.css.href %}
  4. <link rel="stylesheet" href="{{ include.css.href }}" />
  5. {% else %}
  6. <link rel="stylesheet" href="{{ include.css }}" />
  7. {% endif %}