summaryrefslogtreecommitdiff
path: root/layouts/partials/css.tmpl
blob: 45efad766013be6f021aa7cff9d81e54625ed49a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{{$tmp := getenv "HUGO_TEST"}}
{{if eq $tmp "1"}}
<link href="/normalize.css" rel="stylesheet" type="text/css">
<link href="/skeleton.css" rel="stylesheet" type="text/css">
<link href="/font.css" rel="stylesheet" type="text/css">
<link href="/custom.css" rel="stylesheet" type="text/css">
{{else}}
	<style>
	{{$tmp := getenv "HUGO_GULP"}}
	{{if eq $tmp "1"}}
		{{readFile "static/gulp.css/concat.css" | safeCSS}}
	{{else}}
		{{readFile "static/concat.css" | safeCSS}}
	{{end}}
	</style>
{{end}}