mirror of https://github.com/jpanther/congo.git
🐛 add emojify for title on list page and browser / tab title
parent
e35733032c
commit
80533d8641
|
@ -6,7 +6,7 @@
|
||||||
href="{{ . }}"
|
href="{{ . }}"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
rel="external"
|
rel="external"
|
||||||
>{{ $.Title }}</a
|
>{{ $.Title | emojify }}</a
|
||||||
>
|
>
|
||||||
<span
|
<span
|
||||||
class="-mt-2 text-xs cursor-default text-neutral-400 dark:text-neutral-500"
|
class="-mt-2 text-xs cursor-default text-neutral-400 dark:text-neutral-500"
|
||||||
|
@ -18,7 +18,7 @@
|
||||||
<a
|
<a
|
||||||
class="hover:underline hover:underline-primary-500 hover:underline-offset-small text-neutral-800 dark:text-neutral"
|
class="hover:underline hover:underline-primary-500 hover:underline-offset-small text-neutral-800 dark:text-neutral"
|
||||||
href="{{ .RelPermalink }}"
|
href="{{ .RelPermalink }}"
|
||||||
>{{ .Title }}</a
|
>{{ .Title | emojify }}</a
|
||||||
>
|
>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ if and .Draft .Site.Params.article.showDraftLabel }}
|
{{ if and .Draft .Site.Params.article.showDraftLabel }}
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
<title>{{ .Site.Title }}</title>
|
<title>{{ .Site.Title }}</title>
|
||||||
<meta name="title" content="{{ .Site.Title }}" />
|
<meta name="title" content="{{ .Site.Title }}" />
|
||||||
{{- else -}}
|
{{- else -}}
|
||||||
<title>{{ .Title }} · {{ .Site.Title }}</title>
|
<title>{{ .Title | emojify }} · {{ .Site.Title }}</title>
|
||||||
<meta name="title" content="{{ .Title }} · {{ .Site.Title }}" />
|
<meta name="title" content="{{ .Title }} · {{ .Site.Title }}" />
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{/* Metadata */}}
|
{{/* Metadata */}}
|
||||||
|
|
Loading…
Reference in New Issue