mirror of
https://github.com/Noettore/cocoa-eh-hugo-theme.git
synced 2025-10-15 03:36:41 +02:00
40 lines
1.3 KiB
HTML
40 lines
1.3 KiB
HTML
<!-- CSS -->
|
|
|
|
<link href="https://fonts.googleapis.com/css?family=Raleway:400,600,700" rel="stylesheet">
|
|
<link href="https://fonts.googleapis.com/css?family=Merriweather:300,300i,700,700i" rel="stylesheet">
|
|
<link href="https://fonts.googleapis.com/css?family=Ubuntu+Mono:400,700" rel="stylesheet">
|
|
|
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/main.v1.0.0.css" media="screen">
|
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/min600px.v1.0.0.css" media="(min-width: 600px)">
|
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/min769px.v1.0.0.css" media="(min-width: 769px)">
|
|
|
|
{{ if .Site.Params.highlightjs }}
|
|
<style type="text/css" media="screen">
|
|
{{ partial "highlight.min.css" . | safeCSS }}
|
|
</style>
|
|
{{ end }}
|
|
|
|
{{ if .Site.Params.progressively }}
|
|
<style type="text/css" media="screen">
|
|
{{ partial "progressively.min.css" . | safeCSS }}
|
|
</style>
|
|
{{ end }}
|
|
|
|
{{ range .Site.Params.extracssfiles }}
|
|
<link rel="stylesheet" href="{{ . | absURL }}">
|
|
{{ 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 }}
|