diff --git a/archetypes/authors/index.md b/archetypes/authors/index.md index bafadf54c..f166b01ad 100644 --- a/archetypes/authors/index.md +++ b/archetypes/authors/index.md @@ -2,4 +2,5 @@ name: {{ .Name | title}} avatar: temp-avatar.png github: {{ .Name }} +id: {{ .Name }} --- diff --git a/content/authors/fdrees/index.md b/content/authors/fdrees/index.md index e3f626e76..b6011a16a 100644 --- a/content/authors/fdrees/index.md +++ b/content/authors/fdrees/index.md @@ -2,6 +2,7 @@ name: Floor Drees avatar: floor.jpg github: floord +id: fdrees --- Open Source community advocate and Principal Program Manager at EDB. PostgreSQL Code of Conduct Committee member, PG EU Diversity Committee member, PGDay Lowlands organizer. \ No newline at end of file diff --git a/content/authors/jgonzalez/index.md b/content/authors/jgonzalez/index.md index 120a1150c..8185ff85e 100644 --- a/content/authors/jgonzalez/index.md +++ b/content/authors/jgonzalez/index.md @@ -2,6 +2,7 @@ name: Jonathan Gonzalez V. avatar: jgonzalez-gh.jpeg github: sxd +id: jgonzalez --- A free software lover, passionate about OpenSource and all the tools that diff --git a/layouts/authors/single.html b/layouts/authors/single.html index ade050a90..c9e76352f 100644 --- a/layouts/authors/single.html +++ b/layouts/authors/single.html @@ -14,9 +14,10 @@

{{ .Params.name }}

Posts by {{ .Params.name }}

- {{ $this_author := .Params.github }} + {{ $author_git := .Params.github }} + {{ $author_id := .Params.id }} {{ range (.Site.GetPage "/blog").Pages}} - {{ if eq .Params.author $this_author }} + {{ if or (eq .Params.author $author_git) (eq .Params.author $author_id) }}
{{ .Params.title}} {{ partial "blog_datetime.html" . }}