Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
make start with hall of fame
  • Loading branch information
shiltemann authored and willdurand committed Oct 1, 2017
1 parent ecfe93d commit fa25641
Show file tree
Hide file tree
Showing 7 changed files with 89 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CONTRIBUTORS.yaml
Expand Up @@ -148,6 +148,10 @@ pavanvidem:
shiltemann:
name: Saskia Hiltemann
email: zazkia@gmail.com
twitter: shiltemann
linkedin: shiltemann
gitter: shiltemann
orcid: 0000-0003-3803-468X

slegras:
name: Stéphanie Legras
Expand Down
3 changes: 3 additions & 0 deletions _config.yml
Expand Up @@ -77,6 +77,9 @@ icon-tag:
references: fa-book
gitter: fa-life-ring
github: fa-github
email: fa-envelope-o
twitter: fa-twitter
linkedin: fa-linkedin

# To exclude in _site
exclude:
Expand Down
53 changes: 53 additions & 0 deletions _layouts/hall-of-fame.html
@@ -0,0 +1,53 @@
---
layout: base
---

{% assign contributors = site.data['contributors'] %}


{% include default-header.html %}

<div class="container main-content">
<section>
<h1>Hall of Fame</h1>
<p>A big <i>Thank You!</i> to the <strong>{{ contributors | size }}</strong> awesome contributors to the Galaxy training materials! </p>

<div class="row">

{% for contributor in contributors %}
{% assign username = contributor[0] %}
<div class="col-2 hall-of-fame">
<a href="https://github.com/{{ username }}" class="thumbnail">
<img src="https://avatars.githubusercontent.com/{{ username }}"/>
</a>
<br/>
{{ contributors[username].name }}
<br/>
{% if contributors[username].github != false %}
<a title="GitHub" href="https://github.com/{{ username }}"> {% icon github %} </a>
{% endif %}
{% if contributors[username].email %}
<a title="E-mail" href="mailto:{{ contributors[username].email }}"> {% icon email %} </a>
{% endif %}
{% if contributors[username].gitter %}
<a title="Gitter" href="https://gitter.im/{{ contributors[username].gitter }}"> {% icon gitter %} </a>
{% endif %}
{% if contributors[username].twitter %}
<a title="Twitter" href="https://twitter.com/{{ contributors[username].twitter }}"> {% icon twitter %} </a>
{% endif %}
{% if contributors[username].linkedin %}
<a title="LinkedIn" href="https://www.linkedin.com/in/{{ contributors[username].linkedin }}"> {% icon linkedin %} </a>
{% endif %}
{% if contributors[username].orcid %}
<a title="ORCID" href="https://orcid.org/{{ contributors[username].orcid }}">
<img class="contact-icon" src="https://raw.githubusercontent.com/ORCID/ORCID-Source/master/orcid-web/src/main/webapp/static/img/mini-icon.png"/>
</a>
{% endif %}
</div>
{% endfor %}

</div>

</div>
</section>
{% include default-footer.html %}
11 changes: 10 additions & 1 deletion _layouts/home.html
Expand Up @@ -105,8 +105,17 @@ <h2>Acknowledgment and Funding</h2>

<div class="row">
<div class="col-md-6">
<h2>Contributor Hall of Fame</h2>
This project would not be possible without the many awesome community contributors!

<br/><br/>
TODO: slideshow
<br/><br/>

Check out the full <a href="/hall-of-fame">Hall of Fame</a>.

<h2>Contributing</h2>
<p>Do you want to help with this project? Please see the <a href="{{ site.github_repository }}/blob/master/CONTRIBUTING.md">CONTRIBUTING</a> file to get you started.</p>
<p>Do you want to help with this project and join our Hall of Fame? Please see the <a href="{{ site.github_repository }}/blob/master/CONTRIBUTING.md">CONTRIBUTING</a> file to get you started.</p>

<h2>License</h2>
<p>This work is licensed under the <a rel="license" href="https://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.</p>
Expand Down
2 changes: 1 addition & 1 deletion _layouts/tutorial_hands_on.html
Expand Up @@ -179,7 +179,7 @@ <h3>{% icon feedback %} Feedback</h3>
<p>
This material is the result of a collaborative work. Thanks the
<a href="https://wiki.galaxyproject.org/Teach/GTN">Galaxy Training Network</a>
and all the contributors ({{ contributors | remove_first: ', ' }})!
and all the <a href="/hall-of-fame">contributors</a> ({{ contributors | remove_first: ', ' }})!
</p>
<p>
Found a typo? Something is wrong in this tutorial? Edit it on
Expand Down
15 changes: 15 additions & 0 deletions assets/css/main.scss
Expand Up @@ -186,3 +186,18 @@ footer {
display: none;
}
}

.hall-of-fame{
padding: 15px;
text-align: center;

img {
width: 100%;
padding: 5px;
border-radius: 25px;
}
.contact-icon{
width: 15px;
padding: 0px;
}
}
3 changes: 3 additions & 0 deletions hall-of-fame.md
@@ -0,0 +1,3 @@
---
layout: hall-of-fame
---

0 comments on commit fa25641

Please sign in to comment.