Files
github-style/layouts/partials/head.html
2024-11-28 16:50:46 +01:00

29 lines
1.3 KiB
HTML

<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<script type="application/javascript" src='{{ "js/theme-mode.js" | absURL }}'></script>
<link rel="stylesheet" href='{{ "css/frameworks.min.css" | absURL }}' />
<link rel="stylesheet" href='{{ "css/github.min.css" | absURL }}' />
<link rel="stylesheet" href='{{ "css/github-style.css" | absURL }}' />
<link rel="stylesheet" href='{{ "css/light.css" | absURL }}' />
<link rel="stylesheet" href='{{ "css/dark.css" | absURL }}' />
<link rel="stylesheet" href='{{ "css/syntax.css" | absURL }}' />
<title>{{ if .IsHome }}{{ else }}{{ .Title }} - {{ end }}{{ .Site.Title }}</title>
{{ if .Site.Params.favicon }}
<link rel="icon" type="image/x-icon" href='{{ .Site.Params.favicon }}'>
{{ else }}
<link rel="icon" type="image/x-icon" href='{{ "images/favicon.ico" | absURL }}'>
{{ end }}
<meta name="theme-color" content="#1e2327">
{{ range .Site.Params.custom_css -}}
<link rel="stylesheet" href="{{ . | absURL }}">
{{- end }}
{{ range .Site.Params.custom_js -}}
<script type="text/javascript" src="{{ . | absURL }}"></script>
{{- end }}
<!-- Extended head section-->
{{ partial "extended_head.html" . }}
</head>