edited post
This commit is contained in:
parent
d68dca04b8
commit
fb7f277291
|
@ -68,17 +68,13 @@ params:
|
||||||
url: "mailto:me@morgan.kr"
|
url: "mailto:me@morgan.kr"
|
||||||
|
|
||||||
assets:
|
assets:
|
||||||
# disableHLJS: true # to disable highlight.js
|
|
||||||
# disableFingerprinting: true
|
|
||||||
favicon: "https://blog.morgan.kr/favicon.ico"
|
favicon: "https://blog.morgan.kr/favicon.ico"
|
||||||
# favicon16x16: "<link / abs url>"
|
|
||||||
# favicon32x32: "<link / abs url>"
|
|
||||||
apple_touch_icon: "https://blog.morgan.kr/favicon.ico"
|
apple_touch_icon: "https://blog.morgan.kr/favicon.ico"
|
||||||
safari_pinned_tab: "https://blog.morgan.kr/favicon.ico"
|
safari_pinned_tab: "https://blog.morgan.kr/favicon.ico"
|
||||||
|
|
||||||
label:
|
label:
|
||||||
icon: /favicon.ico
|
icon: /favicon.ico
|
||||||
iconHeight: 1
|
iconHeight: 32
|
||||||
|
|
||||||
analytics:
|
analytics:
|
||||||
google:
|
google:
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
git add .
|
git add $(git rev-parse --show-toplevel)
|
||||||
|
|
||||||
git commit -m 'edited post'
|
git commit -m 'edited post'
|
||||||
|
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 100 KiB After Width: | Height: | Size: 3.0 KiB |
Binary file not shown.
After Width: | Height: | Size: 3.0 KiB |
|
@ -1,44 +1,4 @@
|
||||||
{{- /* theme-toggle is enabled */}}
|
{{ /* Math KaTeX }}
|
||||||
{{- if (not site.Params.disableThemeToggle) }}
|
|
||||||
{{- /* theme is light */}}
|
|
||||||
{{- if (eq site.Params.defaultTheme "light") }}
|
|
||||||
<script>
|
|
||||||
if (localStorage.getItem("pref-theme") === "dark") {
|
|
||||||
document.body.classList.add('dark');
|
|
||||||
}
|
|
||||||
|
|
||||||
</script>
|
|
||||||
{{- /* theme is dark */}}
|
|
||||||
{{- else if (eq site.Params.defaultTheme "dark") }}
|
|
||||||
<script>
|
|
||||||
if (localStorage.getItem("pref-theme") === "light") {
|
|
||||||
document.body.classList.remove('dark')
|
|
||||||
}
|
|
||||||
|
|
||||||
</script>
|
|
||||||
{{- else }}
|
|
||||||
{{- /* theme is auto */}}
|
|
||||||
<script>
|
|
||||||
if (localStorage.getItem("pref-theme") === "dark") {
|
|
||||||
document.body.classList.add('dark');
|
|
||||||
} else if (localStorage.getItem("pref-theme") === "light") {
|
|
||||||
document.body.classList.remove('dark')
|
|
||||||
} else if (window.matchMedia('(prefers-color-scheme: dark)').matches) {
|
|
||||||
document.body.classList.add('dark');
|
|
||||||
}
|
|
||||||
|
|
||||||
</script>
|
|
||||||
{{- end }}
|
|
||||||
{{- /* theme-toggle is disabled and theme is auto */}}
|
|
||||||
{{- else if (and (ne site.Params.defaultTheme "light") (ne site.Params.defaultTheme "dark"))}}
|
|
||||||
<script>
|
|
||||||
if (window.matchMedia('(prefers-color-scheme: dark)').matches) {
|
|
||||||
document.body.classList.add('dark');
|
|
||||||
}
|
|
||||||
|
|
||||||
</script>
|
|
||||||
{{- end }}
|
|
||||||
|
|
||||||
{{ if or .Params.math true}}
|
{{ if or .Params.math true}}
|
||||||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.9/dist/katex.min.css">
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.9/dist/katex.min.css">
|
||||||
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.9/dist/katex.min.js"></script>
|
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.9/dist/katex.min.js"></script>
|
||||||
|
@ -58,9 +18,8 @@
|
||||||
<header class="header">
|
<header class="header">
|
||||||
<nav class="nav">
|
<nav class="nav">
|
||||||
<div class="logo">
|
<div class="logo">
|
||||||
{{- $label_text := (site.Params.label.text | default site.Title) }}
|
|
||||||
{{- if site.Title }}
|
{{- if site.Title }}
|
||||||
<a href="{{ "" | absLangURL }}" accesskey="h" title="{{ $label_text }} (Alt + H)">
|
<a href="{{ "" | absLangURL }}" accesskey="h" title="{{ $label_text }}">
|
||||||
{{- if site.Params.label.icon }}
|
{{- if site.Params.label.icon }}
|
||||||
{{- $img := resources.Get site.Params.label.icon }}
|
{{- $img := resources.Get site.Params.label.icon }}
|
||||||
{{- if $img }}
|
{{- if $img }}
|
||||||
|
|
Loading…
Reference in New Issue