I’m building a custom theme and wondering if I can access the “About Me” text I entered on Micro.blog under my account settings. Is there a way to grab it, perhaps something like {{ $.Site.about }} or a similar method?
Thanks!
I’m building a custom theme and wondering if I can access the “About Me” text I entered on Micro.blog under my account settings. Is there a way to grab it, perhaps something like {{ $.Site.about }} or a similar method?
Thanks!
I’ve finally updated this so that it’s easier to access:
{{ .Site.Params.about_me }}
Excellent! Thank you!