mirror of
https://github.com/LukeSmithxyz/based.cooking.git
synced 2026-08-31 10:28:28 +01:00
use pdr's contributor edits
This commit is contained in:
@@ -1,25 +1,31 @@
|
||||
{{ $author := index hugo.Data.authors (.Params.author | default "default") }}
|
||||
{{- if $author -}}
|
||||
{{ with .Params.author }}
|
||||
{{ $author := index hugo.Data.authors . }}
|
||||
<h2>Contributor(s)</h2>
|
||||
<ul>
|
||||
<li>
|
||||
{{- if $author.website -}}<a href="{{ $author.website }}">{{- end -}}
|
||||
{{ $author.name }}
|
||||
{{- if $author.website -}}</a>{{- end -}}
|
||||
<ul>
|
||||
{{- if $author.xmr }}
|
||||
<li><img alt="XMR Logo" src="/pix/xmr.svg">Monero: <code style="overflow-wrap:break-word;font-size:xx-small">{{ $author.xmr }}</code></li>
|
||||
{{- end -}}
|
||||
{{- if $author.btc }}
|
||||
<li><img src="/pix/btc.svg" alt="BTC Logo">Bitcoin: <code>{{ $author.btc }}</code></li>
|
||||
{{- end -}}
|
||||
{{- if $author.eth }}
|
||||
<li><img src="/pix/eth.svg" alt="ETH Logo">Ether: <code>{{ $author.eth }}</code></li>
|
||||
{{- end -}}
|
||||
{{- if $author.donate }}
|
||||
<li><a href="{{ $author.donate }}">Donate/Tip</a></li>
|
||||
{{- end -}}
|
||||
{{ with $author }}
|
||||
<li>
|
||||
{{- if $author.website -}}
|
||||
<a href="{{ $author.website }}">{{ $author.name }}</a>
|
||||
{{ else }}
|
||||
{{ $author.name }}
|
||||
{{- end -}}
|
||||
<ul id="donation">
|
||||
{{- if $author.xmr }}
|
||||
<li><img alt="XMR Logo" src="/pix/xmr.svg">Monero: <code>{{ $author.xmr }}</code></li>
|
||||
{{- end -}}
|
||||
{{- if $author.btc }}
|
||||
<li><img src="/pix/btc.svg" alt="BTC Logo">Bitcoin: <code>{{ $author.btc }}</code></li>
|
||||
{{- end -}}
|
||||
{{- if $author.eth }}
|
||||
<li><img src="/pix/eth.svg" alt="ETH Logo">Ether: <code>{{ $author.eth }}</code></li>
|
||||
{{- end -}}
|
||||
{{- if $author.donate }}
|
||||
<li><a href="{{ $author.donate }}">Donate/Tip</a></li>
|
||||
{{- end -}}
|
||||
</ul>
|
||||
</li>
|
||||
{{ else }}
|
||||
<li>{{ . }}</li>
|
||||
{{- end -}}
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
{{- end -}}
|
||||
{{ end }}
|
||||
|
||||
Reference in New Issue
Block a user