mirror of
https://git.adityakumar.xyz/hugo-theme-introduction.git
synced 2024-11-14 00:59:43 +00:00
16 lines
618 B
HTML
16 lines
618 B
HTML
|
<!-- Fonts and icon CSS -->
|
||
|
<link rel="stylesheet" href="{{ "/css/font-awesome.min.css" | relURL }}">
|
||
|
<link rel="stylesheet" href="{{ "/css/nunito_sans.css" | relURL }}">
|
||
|
|
||
|
<!-- Main css -->
|
||
|
{{ if .Site.Params.cacheBuster }}
|
||
|
<link rel="stylesheet" href="{{ (printf "css/%s-style.css?t=%d" (.Site.Params.themeStyle | default "dark") now.Unix) |relURL }}">
|
||
|
{{ else }}
|
||
|
<link rel="stylesheet" href="{{ (printf "css/%s-style.css" .Site.Params.themeStyle | default "dark") | relURL }}">
|
||
|
{{ end }}
|
||
|
|
||
|
<!-- Custom css -->
|
||
|
{{ range .Site.Params.customCSS -}}
|
||
|
<link rel="stylesheet" href="{{ . | relURL }}">
|
||
|
{{- end }}
|