Welcome to mirror list, hosted at ThFree Co, Russian Federation.

head.stylesheets.html « partials « layouts - github.com/it-gro/hugo-theme-w3css-basic.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 11de8ee68e77f24ac26b8f796007a047eb9e0455 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{{- if or $.Site.Params.debug (findRE `\bhtml-comment\b` $.Site.Params.traceFlags) }}
{{ `<!-- partials/head.stylesheets.html -->` | safeHTML }}
{{- end}}

{{- $assetBusting := not .Site.Params.disableCSSAssetsBusting }}
<!-- <link rel="stylesheet" href='{{ relURL `vendor/fontawesome/5.1.0/css/all.css`                   }}' /> -->
<link rel="stylesheet" href="{{ .Site.BaseURL }}/vendor/fontawesome/5.9.0/css/all.css"                   />
<link rel="stylesheet" href='{{ relURL `vendor/daneden.github.io/animate.css/animate.min.css`            }}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}' />
<link rel="stylesheet" href='{{ relURL `vendor/OwlCarousel2/owl.carousel.min.css`                        }}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}' />
<link rel="stylesheet" href='{{ relURL `vendor/OwlCarousel2/owl.theme.default.min.css`                   }}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}' />

<link rel="stylesheet" href='{{ relURL `vendor/w3css/4/4.13/w3.css`                                      }}' />
{{- /* if and (isset $.Site.Params (lower `w3css_color_theme` )) $.Site.Params.w3css_color_theme */}}
{{- if $.Site.Params.w3cssColorTheme }}
<link rel="stylesheet" id="theme-colors" href='{{ relURL $.Site.Params.w3cssColorTheme }}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}' />
{{- else }}
  <link rel="stylesheet" id="theme-colors" href='{{ relURL `vendor/w3css/4/w3-theme-red.css` }}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}' />
{{- end }}

<link rel="stylesheet" href='{{ relURL `css/syntax.min.css`       }}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}' />
<link rel="stylesheet" href='{{ relURL `css/w3css-basic.min.css`  }}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}' />
<link rel="stylesheet" href='{{ relURL `css/res-gallery.min.css`  }}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}' />

<link rel="stylesheet" href='{{ relURL `css/custom.css`           }}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}' />
{{- range .Site.Params.custom_css }}
<link rel="stylesheet" href='{{ . | relURL                        }}{{ if $assetBusting }}?{{ now.Unix }}{{ end }}' />
{{- end }}