From 97a381a09dfe2b144759b91d420f133915092dd0 Mon Sep 17 00:00:00 2001 From: Fryrvo Fox Date: Sat, 8 Aug 2026 20:29:27 +0800 Subject: [PATCH 1/2] add pronouns support --- layouts/partials/user-profile.html | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/layouts/partials/user-profile.html b/layouts/partials/user-profile.html index b0185081..af3d943f 100644 --- a/layouts/partials/user-profile.html +++ b/layouts/partials/user-profile.html @@ -53,12 +53,17 @@

{{ .Site.Params.author }} {{ if .Site.Params.github }} - {{ .Site.Params.github }} + + {{ .Site.Params.github }} + {{ if .Site.Params.pronouns }} + ยท {{ .Site.Params.pronouns }} + {{ end }} + {{ end }}

+ -
{{ .Site.Params.Description }}
From 9a77677b1b14be4a31c26bcce33c224f664e72df Mon Sep 17 00:00:00 2001 From: Fryrvo Fox Date: Sat, 8 Aug 2026 20:40:09 +0800 Subject: [PATCH 2/2] add pronouns example on config.toml example --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 08491520..58b16408 100644 --- a/README.md +++ b/README.md @@ -164,6 +164,7 @@ pygmentsUseClasses = true [params] author = "MeiK" + pronouns = 'They/Them' description = "In solitude, where we are least alone." github = "MeiK2333" facebook = "MeiK2333"