mirror of
https://github.com/MeiK2333/github-style.git
synced 2025-10-07 01:54:06 +00:00
29 lines
1.3 KiB
HTML
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>
|