2018-08-31 03:24:28 +00:00
|
|
|
<link rel="stylesheet" href="/css/base_fonts.css">
|
2018-10-01 20:38:01 +00:00
|
|
|
<link rel="stylesheet" href="/css/styles.css">
|
2018-07-26 09:53:57 +00:00
|
|
|
{{- if .Params.case_study_styles }}
|
2018-10-01 20:38:01 +00:00
|
|
|
<link rel="stylsheet" href="/css/case-study-styles.css">
|
2018-07-26 09:53:57 +00:00
|
|
|
{{- end }}
|
2018-08-31 03:24:28 +00:00
|
|
|
<link rel="stylesheet" href="{{ "css/jquery-ui.min.css" | relURL }}">
|
|
|
|
<link rel="stylesheet" href="{{ "css/sweetalert.min.css" | relURL }}">
|
|
|
|
<link rel="stylesheet" href="{{ "css/callouts.css" | relURL }}">
|
|
|
|
<link rel="stylesheet" href="{{ "css/custom-jekyll/tags.css" | relURL }}">
|
2018-07-26 09:53:57 +00:00
|
|
|
{{- if .Params.deprecated }}
|
2018-08-31 03:24:28 +00:00
|
|
|
<link rel="stylesheet" href="{{ "css/deprecation-warning.css" | relURL }}">
|
2018-07-26 09:53:57 +00:00
|
|
|
{{- end }}
|
|
|
|
{{- if eq .Params.class "gridPage" }}
|
2018-08-31 03:24:28 +00:00
|
|
|
<link rel="stylesheet" href="{{ "css/gridpage.css" | relURL }}">
|
2018-07-26 09:53:57 +00:00
|
|
|
{{- end }}
|
|
|
|
{{- with .Params.css }}
|
2018-10-01 20:38:01 +00:00
|
|
|
{{- $extraCss := split . "," }}
|
|
|
|
{{- range $extraCss }}
|
2018-07-26 09:53:57 +00:00
|
|
|
{{- $url := trim . " " | relURL }}
|
2018-08-31 03:24:28 +00:00
|
|
|
<link rel="stylesheet" href="{{ $url }}"><!-- custom css added -->
|
|
|
|
{{- end }}
|
2018-07-26 09:53:57 +00:00
|
|
|
{{- end }}
|