Repository: incubator-rya-site Updated Branches: refs/heads/master f88be90bc -> 9928d5e22
Fix broken img for empty github id; hardcoding theme name Project: http://git-wip-us.apache.org/repos/asf/incubator-rya-site/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-rya-site/commit/9928d5e2 Tree: http://git-wip-us.apache.org/repos/asf/incubator-rya-site/tree/9928d5e2 Diff: http://git-wip-us.apache.org/repos/asf/incubator-rya-site/diff/9928d5e2 Branch: refs/heads/master Commit: 9928d5e22a0f82a8fe9784e3912e391ff97debba Parents: f88be90 Author: Aaron Mihalik <[email protected]> Authored: Sun Oct 23 09:36:24 2016 -0400 Committer: Aaron Mihalik <[email protected]> Committed: Sun Oct 23 09:36:24 2016 -0400 ---------------------------------------------------------------------- content/_data/contributors.yml | 12 ++++++------ content/_includes/JB/setup | 2 +- content/community-members.md | 6 ++++-- 3 files changed, 11 insertions(+), 9 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-rya-site/blob/9928d5e2/content/_data/contributors.yml ---------------------------------------------------------------------- diff --git a/content/_data/contributors.yml b/content/_data/contributors.yml index 9693f19..28c0e56 100644 --- a/content/_data/contributors.yml +++ b/content/_data/contributors.yml @@ -19,7 +19,7 @@ # - name: Jennifer Brown apacheId: jbrown - githubId: +# githubId: role: Committer org: Parsons @@ -31,7 +31,7 @@ - name: Kevin Chilton apacheId: - githubId: +# githubId: role: Contributor - name: Adina Crainiceanu @@ -49,13 +49,13 @@ - name: Adam Fuchs apacheId: afuchs - githubId: +# githubId: role: Champion org: - name: Craig Hahn apacheId: - githubId: +# githubId: org: role: Contributor @@ -109,13 +109,13 @@ - name: Amila Wijayarathna apacheId: - githubId: +# githubId: org: role: Contributor - name: Edward J. Yoon apacheId: edwardyoon - githubId: +# githubId: org: role: Mentor http://git-wip-us.apache.org/repos/asf/incubator-rya-site/blob/9928d5e2/content/_includes/JB/setup ---------------------------------------------------------------------- diff --git a/content/_includes/JB/setup b/content/_includes/JB/setup index e863325..0d8b0b7 100644 --- a/content/_includes/JB/setup +++ b/content/_includes/JB/setup @@ -16,7 +16,7 @@ {% if site.JB.ASSET_PATH %} {% assign ASSET_PATH = site.JB.ASSET_PATH %} {% else %} - {% capture ASSET_PATH %}{{ BASE_PATH }}/assets/themes/{{ page.theme.name }}{% endcapture %} + {% capture ASSET_PATH %}{{ BASE_PATH }}/assets/themes/apache{% endcapture %} {% endif %} {% endif %} {% endcapture %}{% assign jbcache = nil %} http://git-wip-us.apache.org/repos/asf/incubator-rya-site/blob/9928d5e2/content/community-members.md ---------------------------------------------------------------------- diff --git a/content/community-members.md b/content/community-members.md index 4edf3ae..3bad8d0 100644 --- a/content/community-members.md +++ b/content/community-members.md @@ -32,11 +32,12 @@ limitations under the License. {% if site.data.contributors %} <table class="table table-hover"> <tr> - <th><b></b></th><th><b>Full Name</b></th><th><b>Apache ID</b></th><th><b>GitHub</b><th><b>Role</b></th><th><b>Affiliation</b></th> + <th><b></b></th> <th><b>Full Name</b></th> <th><b>Apache ID</b></th> <th><b>GitHub</b></th> <th><b>Role</b></th> <th><b>Affiliation</b></th> </tr> + {% for member in site.data.contributors %} <tr> - <td><a href="http://github.com/{{ member.githubId }}"><img width="64" src="{% unless c.avatar %}http://github.com/{{ member.githubId }}.png{% else %}{{ member.avatar }}{% endunless %}"></a></td> + <td>{% if member.githubId %}<a href="http://github.com/{{ member.githubId }}"><img width="64" src="{% unless c.avatar %}http://github.com/{{ member.githubId }}.png{% else %}{{ member.avatar }}{% endunless %}"></a>{% endif %}</td> <td>{{member.name}}</td> <td>{{member.apacheId}}</td> <td><a href="http://github.com/{{ member.githubId }}">{{ member.githubId }}</a></td> @@ -45,5 +46,6 @@ limitations under the License. </tr> {% endfor %} </table> + {% endif %}
