dashboard
repositories
filestore
activity
search
login
external-software
/
github_gohugo_theme_hugo-coder
mirror of
https://github.com/luizdepra/hugo-coder.git
summary
commits
tree
docs
forks
compare
blame
|
history
|
raw
Only include the generator tag on the homepage. (#792)
Simon Hollingshead
06.03.2023
cb77c217e145ba8e9d54cbdc765d31868e205499
[external-software/github_gohugo_theme_hugo-coder.git]
/
layouts
/
partials
/
home
/
avatar.html
1
2
3
4
5
6
7
8
{{ if and (isset .Site.Params "avatarurl") (not (isset .Site.Params "gravatar")) }}
{{ with .Site.Params.avatarURL }}
<div class="avatar"><img src="{{ . | relURL }}" alt="avatar"></div>
{{ end }}
{{ end }}
{{ with .Site.Params.gravatar }}
<div class="avatar"><img src="https://www.gravatar.com/avatar/{{md5 .}}?s=240&d=mp" alt="gravatar"></div>
{{ end }}