{{- /* sigdl — Download & Verify block for each post. Usage: {{< sigdl >}} Normalizes index.md/_index.md so links become /sources/
Downloads: Markdown · Signature (.asc)
{{- if $sig -}}{{ $sig }}
Verify locally:
{{- if $isOnion -}}
torsocks curl -fSLO {{ $download | absURL }}
torsocks curl -fSLO {{ $asc | absURL }}
{{- else -}}
curl -fSLO {{ $download | absURL }}
curl -fSLO {{ $asc | absURL }}
{{- end }}
gpg --verify {{ path.Base $asc }} {{ path.Base $download }}