Skip to content

Commit

Permalink
Site: Change GitHub avatar links to https
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelmior committed Oct 8, 2019
1 parent 3f54108 commit 062c413
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions site/_includes/news_item.html
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@ <h2>
{% if c.homepage %}
{% assign homepage = c.homepage %}
{% else %}
{% capture homepage %}http://github.com/{{ c.githubId }}{% endcapture %}
{% capture homepage %}https://github.com/{{ c.githubId }}{% endcapture %}
{% endif %}
{% if c.avatar %}
{% assign avatar = c.avatar %}
{% else %}
{% capture avatar %}http://github.com/{{ c.githubId }}.png{% endcapture %}
{% capture avatar %}https://github.com/{{ c.githubId }}.png{% endcapture %}
{% endif %}
{% endif %}
{% endfor %}
Expand Down
4 changes: 2 additions & 2 deletions site/_layouts/news_item.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ <h2>
{% if c.homepage %}
{% assign homepage = c.homepage %}
{% else %}
{% capture homepage %}http://github.com/{{ c.githubId }}{% endcapture %}
{% capture homepage %}https://github.com/{{ c.githubId }}{% endcapture %}
{% endif %}
{% if c.avatar %}
{% assign avatar = c.avatar %}
{% else %}
{% capture avatar %}http://github.com/{{ c.githubId }}.png{% endcapture %}
{% capture avatar %}https://github.com/{{ c.githubId }}.png{% endcapture %}
{% endif %}
{% endif %}
{% endfor %}
Expand Down
4 changes: 2 additions & 2 deletions site/community/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,14 @@ limitations under the License.

Name (Apache ID) | Github | Org | Role
:--------------- | :----- | :-- | :---
{% for c in site.data.contributors %}{% unless c.emeritus %}{% if c.homepage %}<a href="{{ c.homepage }}">{{ c.name }}</a>{% else %}{{ c.name }}{% endif %} (<a href="http://people.apache.org/phonebook.html?uid={{ c.apacheId }}">{{ c.apacheId }}</a>) | <a href="http://github.com/{{ c.githubId }}"><img width="64" src="{% unless c.avatar %}http://github.com/{{ c.githubId }}.png{% else %}{{ c.avatar }}{% endunless %}"></a> | {{ c.org }} | {{ c.role }}
{% for c in site.data.contributors %}{% unless c.emeritus %}{% if c.homepage %}<a href="{{ c.homepage }}">{{ c.name }}</a>{% else %}{{ c.name }}{% endif %} (<a href="http://people.apache.org/phonebook.html?uid={{ c.apacheId }}">{{ c.apacheId }}</a>) | <a href="https://github.com/{{ c.githubId }}"><img width="64" src="{% unless c.avatar %}https://github.com/{{ c.githubId }}.png{% else %}{{ c.avatar }}{% endunless %}"></a> | {{ c.org }} | {{ c.role }}
{% endunless %}{% endfor %}

Emeritus members

Name (Apache ID) | Github | Org | Role
:--------------- | :----- | :-- | :---
{% for c in site.data.contributors %}{% if c.emeritus %}{% if c.homepage %}<a href="{{ c.homepage }}">{{ c.name }}</a>{% else %}{{ c.name }}{% endif %} (<a href="http://people.apache.org/phonebook.html?uid={{ c.apacheId }}">{{ c.apacheId }}</a>) | <a href="http://github.com/{{ c.githubId }}"><img width="64" src="{% unless c.avatar %}http://github.com/{{ c.githubId }}.png{% else %}{{ c.avatar }}{% endunless %}"></a> | {{ c.org }} | {{ c.role }}
{% for c in site.data.contributors %}{% if c.emeritus %}{% if c.homepage %}<a href="{{ c.homepage }}">{{ c.name }}</a>{% else %}{{ c.name }}{% endif %} (<a href="http://people.apache.org/phonebook.html?uid={{ c.apacheId }}">{{ c.apacheId }}</a>) | <a href="https://github.com/{{ c.githubId }}"><img width="64" src="{% unless c.avatar %}https://github.com/{{ c.githubId }}.png{% else %}{{ c.avatar }}{% endunless %}"></a> | {{ c.org }} | {{ c.role }}
{% endif %}{% endfor %}

# Mailing Lists
Expand Down

0 comments on commit 062c413

Please sign in to comment.