beautifulSA-jekyll/_includes/ext-css.html

8 lines
298 B
HTML
Raw Permalink Normal View History

{% if include.css.sri %}
<link href="{{ include.css.href }}" rel="stylesheet" integrity="{{ include.css.sri }}" crossorigin="anonymous">
{% elsif include.css.href %}
<link rel="stylesheet" href="{{ include.css.href }}">
{% else %}
<link rel="stylesheet" href="{{ include.css }}">
2018-12-25 23:27:22 +01:00
{% endif %}