diff --git a/site/content/posts/2023-08-09-v0.25.0-impersonation-proxy-with-external-certs.md b/site/content/posts/2023-08-09-v0.25.0-impersonation-proxy-with-external-certs.md index 8bfa8b5a..a4ebbc12 100644 --- a/site/content/posts/2023-08-09-v0.25.0-impersonation-proxy-with-external-certs.md +++ b/site/content/posts/2023-08-09-v0.25.0-impersonation-proxy-with-external-certs.md @@ -8,7 +8,7 @@ authors: - Benjamin A. Petersen image: https://images.unsplash.com/photo-1618075254460-429d47b887c7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2148&q=80 excerpt: "With v0.25.0 you get external certificate management for the impersonation proxy, easier scheduling of the kube-cert-agent, and more" -tags: ['Joshua T. Casey','Ryan Richard', 'Benjamin Petersen', 'release', 'kubernetes', 'pki', 'pinniped', 'tls', 'mtls', 'kind', 'contour', 'cert-manager'] +tags: ['Joshua T. Casey','Ryan Richard', 'Benjamin A. Petersen', 'release', 'kubernetes', 'pki', 'pinniped', 'tls', 'mtls', 'kind', 'contour', 'cert-manager'] --- ![Friendly seal](https://images.unsplash.com/photo-1618075254460-429d47b887c7?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2148&q=80) diff --git a/site/themes/pinniped/layouts/_default/single.html b/site/themes/pinniped/layouts/_default/single.html index 680aab6c..53a2fb80 100644 --- a/site/themes/pinniped/layouts/_default/single.html +++ b/site/themes/pinniped/layouts/_default/single.html @@ -9,9 +9,7 @@

{{ .Title }}

-

- {{ .Params.author }} -

+ {{ partial "authors" .}}

{{ dateFormat "Jan 2, 2006" .Date }}

{{ .Content }}
diff --git a/site/themes/pinniped/layouts/partials/authors.html b/site/themes/pinniped/layouts/partials/authors.html new file mode 100644 index 00000000..232f1c32 --- /dev/null +++ b/site/themes/pinniped/layouts/partials/authors.html @@ -0,0 +1,11 @@ +

+ {{ if (isset .Params "authors") }} + {{ $authsCount := .Params.authors | len }} + {{ $commaCount := sub $authsCount 2 }} + {{ range $i, $author := .Params.authors -}} + {{ $author }}{{ if le $i $commaCount }},{{ end }} + {{ end }} + {{ else }} + {{ .Params.author }} + {{ end }} +

diff --git a/site/themes/pinniped/layouts/partials/blog-post-card.html b/site/themes/pinniped/layouts/partials/blog-post-card.html index eed82844..6f7b3c27 100644 --- a/site/themes/pinniped/layouts/partials/blog-post-card.html +++ b/site/themes/pinniped/layouts/partials/blog-post-card.html @@ -5,7 +5,6 @@

{{ .Title }}

-

{{ .Params.author }}

{{ .Params.Excerpt }}