From 0cba24cde269eb300b85550c8cc21197464306de Mon Sep 17 00:00:00 2001 From: Daniel Jr Date: Sun, 8 Feb 2026 05:25:45 -0300 Subject: [PATCH] add gpg public key at /pub.key Signed-off-by: Daniel Jr --- hugo.toml | 3 ++- layouts/index.html | 5 ++++- static/{gpg.key => pub.key} | 0 3 files changed, 6 insertions(+), 2 deletions(-) rename static/{gpg.key => pub.key} (100%) diff --git a/hugo.toml b/hugo.toml index 846fa85..bdea258 100644 --- a/hugo.toml +++ b/hugo.toml @@ -31,13 +31,14 @@ description = "Software Engineer | Back End Developer | Java 8+ | Microservices" tagsOverview = true show_updated = true showReadTime = false +pubkey = "https://danielmrcl.dev/pub.key" [params.comments] enabled = false [[params.social]] name = "email" -link = "https://click.danielmrcl.dev/email_me" +link = "mailto:dan@danielmrcl.dev" [[params.social]] name = "linkedin" link = "https://click.danielmrcl.dev/linkedin" diff --git a/layouts/index.html b/layouts/index.html index 6c59321..a022fbb 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -3,7 +3,10 @@ {{ if isset .Site.Params "description" }} {{ .Site.Params.description | $.Page.RenderString }}
{{ end }} - Worked at Justa and Onnibank. + Worked at Justa and Onnibank.
+ {{ if isset .Site.Params "pubkey"}} + pubkey: {{ .Site.Params.pubkey }} + {{ end }} {{ if isset .Site.Params "social" }}

Find me on {{ $length := (len .Site.Params.social) }} diff --git a/static/gpg.key b/static/pub.key similarity index 100% rename from static/gpg.key rename to static/pub.key -- 2.47.3