Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,7 @@ pygmentsUseClasses = true

[params]
author = "MeiK"
pronouns = 'They/Them'
description = "In solitude, where we are least alone."
github = "MeiK2333"
facebook = "MeiK2333"
Expand Down
9 changes: 7 additions & 2 deletions layouts/partials/user-profile.html
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,17 @@
<h1 class="vcard-names pl-2 pl-md-0">
<span class="p-name vcard-fullname d-block overflow-hidden">{{ .Site.Params.author }}</span>
{{ if .Site.Params.github }}
<span class="p-nickname vcard-username d-block">{{ .Site.Params.github }}</span>
<span class="p-nickname vcard-username d-block font-weight-light">
{{ .Site.Params.github }}
{{ if .Site.Params.pronouns }}
<span class="text-gray-light"> · {{ .Site.Params.pronouns }}</span>
{{ end }}
</span>
{{ end }}
</h1>
</div>

</div>

<div class="p-note user-profile-bio mb-3 js-user-profile-bio f4">
<div>{{ .Site.Params.Description }}</div>
</div>
Expand Down