mirror of
https://github.com/seigler/dash-docs
synced 2025-07-27 09:46:12 +00:00
Fix deprecated use of gravatar_id with the GitHub API
This commit is contained in:
parent
468f48686a
commit
48d47dd035
3 changed files with 5 additions and 5 deletions
|
@ -58,7 +58,7 @@ id: about-us
|
|||
<div class="contributors">
|
||||
{% for c in site.sitecontributors %}
|
||||
<div>
|
||||
<div>{% if c.gravatar_id %}<img src="https://secure.gravatar.com/avatar/{{c.gravatar_id}}?s=140&d=mm" alt="icon" />{% else %}<img alt="icon" />{% endif %}</div>
|
||||
<div>{% if c.avatar_url %}<img src="{{c.avatar_url}}" alt="icon" />{% else %}<img alt="icon" />{% endif %}</div>
|
||||
<div><a{% if c.login %} href="https://github.com/{{c.login}}"{% endif %}>{{ c.name | htmlescape }}</a></div>
|
||||
<div>({{ c.contributions }})</div>
|
||||
</div>
|
||||
|
|
|
@ -69,7 +69,7 @@ id: development
|
|||
<div class="contributors">
|
||||
{% for c in site.corecontributors %}
|
||||
<div>
|
||||
<div>{% if c.gravatar_id %}<img src="https://secure.gravatar.com/avatar/{{c.gravatar_id}}?s=140&d=mm" alt="icon" />{% else %}<img alt="icon" />{% endif %}</div>
|
||||
<div>{% if c.avatar_url %}<img src="{{c.avatar_url}}" alt="icon" />{% else %}<img alt="icon" />{% endif %}</div>
|
||||
<div><a{% if c.login %} href="https://github.com/{{c.login}}"{% endif %}>{{ c.name | htmlescape }}</a></div>
|
||||
<div>({{ c.contributions }})</div>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue