Merge pull request #124 from ndgnuh/pr

Wrong number of arguments
This commit is contained in:
zzossig 2020-01-31 15:34:03 +09:00 committed by GitHub
commit 12319a9402
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -5,7 +5,7 @@
<div class="whoami__image-wrapper">
{{ $src := "" }}
{{ if site.Params.useGravatar }}
{{ $src = printf "https://s.gravatar.com/avatar/%s?s=200" (md5 $.Param "email") }}
{{ $src = printf "https://s.gravatar.com/avatar/%s?s=200" (md5 ($.Param "email")) }}
<img src="{{ $src }}" alt="{{ if $.Param "myname" }}{{ $.Param "myname" }}{{ else }}Avatar{{ end }}" class="whoami__image"/>
{{ else }}
{{ if $.Param "authorImageUrl" }}
@ -51,4 +51,4 @@
</div>
</section>
<hr class="hr-slash whoami-hr" />
{{ end }}
{{ end }}

View File

@ -4,7 +4,7 @@
<div class="bio__photo-wrapper">
{{ $src := "" }}
{{ if site.Params.useGravatar }}
{{ $src = printf "https://s.gravatar.com/avatar/%s?s=200" (md5 $.Param "email") }}
{{ $src = printf "https://s.gravatar.com/avatar/%s?s=200" (md5 ($.Param "email")) }}
<img src="{{ $src }}" alt="{{ if $.Param "myname" }}{{ $.Param "myname" }}{{ else }}Avatar{{ end }}" class="bio__photo"/>
{{ else }}
{{ if $.Param "bioImageUrl" }}
@ -75,4 +75,4 @@
</div>
</section>
<hr class="hr-fade sidebar-hr"/>
{{ end }}
{{ end }}