mirror of
https://github.com/Colin-XKL/Colinx-Blog.git
synced 2026-01-12 02:31:27 +08:00
39 lines
1.3 KiB
HTML
39 lines
1.3 KiB
HTML
<!-- this file was ported and edited from theme, check if there's any update in the original repo -->
|
|
<!-- do not use code formatting -->
|
|
<!-- do not edit this file unless neccessary -->
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta
|
|
name="description"
|
|
content="{{ if .IsHome }}{{ $.Site.Params.Subtitle }}{{ else }}{{ .Summary | plainify }}{{ end }}"
|
|
/>
|
|
<meta
|
|
name="keywords"
|
|
content="{{ with .Params.Keywords }}{{ delimit . ", " }}{{ else }}{{ $.Site.Params.Keywords }}{{ end }}"
|
|
/>
|
|
|
|
<link rel="canonical" href="{{ $.Site.Params.canonicalRelLinkBase }}{{ .RelPermalink }}" />
|
|
|
|
<!-- head custom -->
|
|
{{- partial "prepended_head.html" . }}
|
|
|
|
<!-- Custom CSS to override theme properties (/static/style.css) -->
|
|
<link rel="stylesheet" href="{{ "style.css" | absURL }}" />
|
|
<!-- Theme CSS -->
|
|
<link rel="stylesheet" href="{{ "assets/style.css" | absURL }}" />
|
|
|
|
<!-- Icons,deleted for using emoji favicon-->
|
|
|
|
<!-- Fonts, disabled-->
|
|
|
|
<!-- OG data -->
|
|
{{ template "_internal/opengraph.html" . }}
|
|
|
|
<!-- RSS | JSON -->
|
|
{{ range .AlternativeOutputFormats -}}
|
|
{{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .RelPermalink $.Site.Title | safeHTML }}
|
|
{{ end -}}
|
|
|
|
<!-- head custom -->
|
|
{{- partial "extended_head.html" . }}
|