Skip to content
Merged
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 archetypes/authors/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
name: {{ .Name | title}}
avatar: temp-avatar.png
github: {{ .Name }}
id: {{ .Name }}
---
1 change: 1 addition & 0 deletions content/authors/fdrees/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
1 change: 1 addition & 0 deletions content/authors/jgonzalez/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 3 additions & 2 deletions layouts/authors/single.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,10 @@ <h3><a href="https://github.com/{{ .Params.github }}">{{ .Params.name }}</a></h3
</div>

<h3 class="text-xl font-bold mb-6">Posts by {{ .Params.name }}</h3>
{{ $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) }}
<div class="column is-half">
<a href="{{ .RelPermalink }}">{{ .Params.title}}</a>
{{ partial "blog_datetime.html" . }}
Expand Down