Compare commits

...

4 commits

Author SHA1 Message Date
a419ec04d2 errors++; 2024-07-03 13:07:28 -05:00
94678c36fe fix sitemap url 2024-07-03 12:21:42 -05:00
5a80a65364 fix for description in head 2024-07-03 10:59:27 -05:00
f67f8390b6 add support for new 'fediverse:creator' property 2024-07-03 10:57:28 -05:00
3 changed files with 5 additions and 2 deletions

View file

@ -44,6 +44,7 @@ reply = true
name = "John Bowdre" name = "John Bowdre"
email = "jbowdre@omg.lol" email = "jbowdre@omg.lol"
username = "jbowdre" username = "jbowdre"
fedi = "@jbowdre@social.lol"
[theme] [theme]
palette = "runtimeterror" palette = "runtimeterror"
@ -80,6 +81,7 @@ taglines = [
"errors are for beginners, we only do undefined behavior", "errors are for beginners, we only do undefined behavior",
"expression has no effect", "expression has no effect",
"failed successfully", "failed successfully",
"fatal: detected dubious ownership in repository",
"file descriptor in bad state", "file descriptor in bad state",
"floating in a sea of bugs", "floating in a sea of bugs",
"from chatgpt with bugs", "from chatgpt with bugs",

View file

@ -1,5 +1,6 @@
<title>{{ with .Title }}{{ . }} &ndash; {{end}}{{ .Site.Title }}</title> <title>{{ with .Title }}{{ . }} &ndash; {{end}}{{ .Site.Title }}</title>
{{ with .Site.Params.about }}<meta name="description" content="{{ .description }}">{{ end }} <meta name="description" content="{{ with .Description }}{{ . }}{{ else }}{{if .IsPage}}{{ .Summary }}{{ else }}{{ with .Site.Params.description }}{{ . }}{{ end }}{{ end }}{{ end }}">
{{ with .Site.Params.Author.fedi }}<meta property="fediverse:creator" content="{{ . }}" />{{ end }}
<meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="UTF-8"/> <meta charset="UTF-8"/>

View file

@ -1,4 +1,4 @@
Sitemap: {{ .Site.BaseURL }}/sitemap.xml Sitemap: {{ .Site.BaseURL }}sitemap.xml
# hello robots [^_^] # hello robots [^_^]
# let's be friends <3 # let's be friends <3