mirror of
https://github.com/tabler/tabler.git
synced 2025-12-22 09:54:24 +04:00
14 lines
909 B
HTML
14 lines
909 B
HTML
{% if site.data.libs %}
|
|
<!-- Libs CSS -->
|
|
{% for lib in site.data.libs.css %}
|
|
<link href="{{ site.base }}/{% if jekyll.environment == 'production' %}dist/libs{% else %}node_modules{% endif %}/{% if jekyll.environment == 'production' %}{{ lib | replace: '@', '' }}{% else %}{{ lib }}{% endif %}?{{ site.time | date: '%s' }}" rel="stylesheet" />
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
<!-- Tabler Core -->
|
|
<link href="{{ site.base }}/dist/css/tabler{% if jekyll.environment == 'production' %}.min{% endif %}.css?{{ site.time | date: '%s' }}" rel="stylesheet" />
|
|
|
|
<!-- Tabler Plugins -->
|
|
<link href="{{ site.base }}/dist/css/tabler-flags{% if jekyll.environment == 'production' %}.min{% endif %}.css?{{ site.time | date: '%s' }}" rel="stylesheet" />
|
|
<link href="{{ site.base }}/dist/css/tabler-charts{% if jekyll.environment == 'production' %}.min{% endif %}.css?{{ site.time | date: '%s' }}" rel="stylesheet" />
|