2020-05-12 14:51:07 +02:00
{{- .Scratch.Set "version" "0.2.7" -}}
2020-04-21 16:55:06 +02:00
{{- $version := "0.2.X" -}}
2020-03-16 14:35:16 +01:00
{{- /* LoveIt theme version detection */ -}}
2020-04-27 19:38:22 +02:00
{{- if eq .Site .Sites.First -}}
{{- if not .Site.Params.version -}}
{{- errorf "Configuration Error 配置文件错误\n\nYou haven't configured the LoveIt version param correctly yet. See https://hugoloveit.com/theme-documentation-basics/#basic-configuration\n你还没有正确配置 LoveIt 的版本参数. 参考 https://hugoloveit.com/zh-cn/theme-documentation-basics/#basic-configuration\n" -}}
{{- else if ne .Site.Params.version $version -}}
{{- errorf (printf "Compatibility Error 兼容性错误\n\n%s -> %s:\nYou have an incompatible update. See https://github.com/dillonzq/LoveIt/releases\n你进行了一次不兼容的更新. 参考 https://github.com/dillonzq/LoveIt/releases\n" .Site.Params.version $version) -}}
{{- end -}}
2020-04-21 16:55:06 +02:00
{{- end -}}
{{- $params := .Params | merge .Site.Params.page -}}
{{- if eq hugo.Environment "production" -}}
{{- .Scratch.Set "cdn" .Site.Params.cdn -}}
{{- .Scratch.Set "fingerprint" .Site.Params.fingerprint -}}
2020-04-22 11:50:30 +02:00
{{- .Scratch.Set "analytics" .Site.Params.analytics -}}
{{- .Scratch.Set "comment" $params.comment -}}
2020-05-12 16:40:49 +02:00
{{- if eq .Params.comment true -}}
{{- .Scratch.Set "comment" .Site.Params.comment -}}
{{- else if eq .Params.comment false -}}
{{- .Scratch.Set "comment" dict -}}
{{- end -}}
2020-04-27 19:38:22 +02:00
{{- else if eq .Site .Sites.First -}}
{{- warnf "\n\nCurrent environment is \"development\". The \"comment system\", \"CDN\" and \"fingerprint\" will be disabled.\n当前运行环境是 \"development\". \"评论系统\", \"CDN\" 和 \"fingerprint\" 不会启用.\n" -}}
2020-03-16 14:35:16 +01:00
{{- end -}}
2020-04-21 16:55:06 +02:00
{{- .Scratch.Set "params" $params -}}
2020-05-12 16:40:49 +02:00
2020-04-21 16:55:06 +02:00
{{- $this := dict "desktop" .Site.Params.header.desktopMode "mobile" .Site.Params.header.mobileMode | dict "headerMode" | dict "config" -}}
{{- .Scratch.Set "this" $this -}}
2019-02-03 12:30:44 +01:00
<!DOCTYPE html>
< html lang = "{{ .Site.LanguageCode }}" >
2019-08-04 15:53:35 +02:00
< head >
< meta charset = "utf-8" >
2020-02-13 18:30:33 +01:00
< meta name = "viewport" content = "width=device-width, initial-scale=1" >
< meta name = "robots" content = "noodp" / >
< meta http-equiv = "X-UA-Compatible" content = "IE=edge, chrome=1" >
2020-01-31 15:53:04 +01:00
< title >
{{- block "title" . }}{{ .Site.Title }}{{ end -}}
< / title >
2020-04-21 16:55:06 +02:00
< meta name = "Description" content = "{{ $params.description | default .Site.Params.description }}" >
2020-02-13 18:30:33 +01:00
{{- partial "head/meta.html" . -}}
{{- partial "head/link.html" . -}}
{{- partial "head/seo.html" . -}}
2019-08-04 15:53:35 +02:00
< / head >
2019-08-21 22:01:02 +02:00
< body >
2020-02-03 11:38:10 +01:00
{{- /* Check theme isDark before body rendering */ -}}
2020-04-21 16:55:06 +02:00
{{- $theme := .Site.Params.defaulttheme -}}
2020-04-27 19:38:22 +02:00
< script type = "text/javascript" > ( window . localStorage && localStorage . getItem ( 'theme' ) ? localStorage . getItem ( 'theme' ) === 'dark' : ( '{{ $theme }}' === 'auto' ? window . matchMedia ( '(prefers-color-scheme: dark)' ) . matches : '{{ $theme }}' === 'dark' ) ) && document . body . setAttribute ( 'theme' , 'dark' ) ; < / script >
2020-04-15 09:46:50 +02:00
< div id = "mask" > < / div >
2020-02-03 11:38:10 +01:00
{{- /* Body wrapper */ -}}
2019-08-04 15:53:35 +02:00
< div class = "wrapper" >
2020-01-31 11:46:28 +01:00
{{- partial "header.html" . -}}
2019-08-04 15:53:35 +02:00
< main class = "main" >
< div class = "container" >
2020-01-31 11:46:28 +01:00
{{- block "content" . }}{{ end -}}
2019-08-04 15:53:35 +02:00
< / div >
< / main >
2020-01-31 11:46:28 +01:00
{{- partial "footer.html" . -}}
2019-08-04 15:53:35 +02:00
< / div >
2020-02-03 11:38:10 +01:00
2020-04-18 14:54:54 +02:00
< div id = "fixed-buttons" >
2020-03-16 08:01:51 +01:00
{{- /* top button */ -}}
2020-04-15 09:46:50 +02:00
< a href = "#" id = "back-to-top" class = "fixed-button" title = "{{ T `backToTop` }}" >
2020-03-16 08:01:51 +01:00
< i class = "fas fa-arrow-up fa-fw" > < / i >
< / a >
2020-03-16 19:03:36 +01:00
{{- /* comment button */ -}}
2020-04-15 09:46:50 +02:00
< a href = "#" id = "view-comments" class = "fixed-button" title = "{{ T `viewComments` }}" >
2020-03-16 19:03:36 +01:00
< i class = "fas fa-comment fa-fw" > < / i >
< / a >
2020-03-16 08:01:51 +01:00
< / div >
2020-02-03 11:38:10 +01:00
2020-02-27 13:14:40 +01:00
{{- /* Load JavaScript scripts and CSS */ -}}
{{- partial "assets.html" . -}}
2019-08-04 15:53:35 +02:00
< / body >
2020-02-06 17:10:00 +01:00
< / html >