mirror of
https://github.com/Noettore/cocoa-eh-hugo-theme.git
synced 2025-10-15 03:36:41 +02:00
32 lines
945 B
HTML
32 lines
945 B
HTML
<!-- CSS -->
|
|
|
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/reset.css">
|
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/main.css">
|
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/fonts.css">
|
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/ionicons.min.css">
|
|
|
|
{{ if .Site.Params.highlightjs }}
|
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/highlight.min.css">
|
|
{{ end }}
|
|
|
|
{{ if .Site.Params.progressively }}
|
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/progressively.min.css">
|
|
{{ end }}
|
|
|
|
{{range .Site.Params.extracssfiles}}
|
|
<link rel="stylesheet" href="{{.}}">
|
|
{{end}}
|
|
|
|
<!-- Icon -->
|
|
<link rel="shortcut icon"
|
|
{{ if .Site.Params.faviconfile }}
|
|
href="{{ .Site.Params.faviconfile | absURL }}"
|
|
{{ else }}
|
|
href="{{ .Site.BaseURL }}img/favicon.ico"
|
|
{{ end }}
|
|
>
|
|
|
|
<!-- RSS -->
|
|
{{ if .RSSLink }}
|
|
<link href="{{ .RSSLink }}" rel="alternate" type="application/rss+xml" title="{{ .Site.Title }}" />
|
|
{{ end }} |