aboutsummaryrefslogtreecommitdiff
path: root/themes/terrassa/layouts/partials/styles.html
blob: cf06c3a767c4466dfc497d70b9a3ad5dff335386 (plain)
1
2
3
4
5
6
7
8
9
10
11
{{ $reset := resources.Get "css/reset.css" }}
{{ $base := resources.Get "css/base.css" }}
{{ $style := resources.Get "css/style.css" }}
{{ $media := resources.Get "css/media-queries.css" }}
{{ $animations := resources.Get "css/animations.css" }}
{{ $custom := resources.Get "css/custom.css" }}
{{ $bundle := slice $reset $base $style $media $animations $custom | resources.Concat "css/bundle.css" }}

{{ $css := $bundle | resources.Minify }}

<link rel="stylesheet" href="{{ $css.Permalink }}">