Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Compute founders list using templating and yaml. #14

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 13 additions & 8 deletions about.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,18 @@
members:

2013:
-
- &simon
name: Simon Weber
link: http://www.simonmweber.com
-
- &wong
name: Andrew D. Wong
link: https://andrewdwong.com
-
- &sean
name: Sean Brennan
link: https://github.com/eyebraus

2014:
-
- &nate
name: Nate Book
link: http://www.natembook.com
-
Expand All @@ -31,15 +31,15 @@
link: https://github.com/seonggbang

2015:
-
- &cel
name: Charles Lehner
link: https://celehner.com
-
name: Ryan Puffer
link: http://www.ryanpuffer.com

2016:
-
- &steve
name: Steve Gattuso
link: http://stevegattuso.me
-
Expand Down Expand Up @@ -72,12 +72,17 @@
-
name: Xinran Li

founders: [*simon, *sean, *wong, *nate, *cel, *steve]

---
<h1>About RocHack</h1>
<p class="indent">
RocHack started with a Facebook thread about posting GitHub profiles. Shortly
after, <a href="http://www.simonmweber.com">Simon Weber</a>, <a href="#">Sean Brennan</a>, <a
href="https://andrewdwong.com">Andrew Wong</a>, <a href="#">Nate Book</a>, <a href="http://celehner.com/">Charles Lehner</a>, and <a href="#">Steve Gattuso</a> met up in person for the very first RocHack meeting (which ended up being all of them sitting in a room ranting about technology) in September of 2012.
after,
{% for member in page.founders %}
<a href="{{ member.link }}">{{ member.name }}</a>{% unless forloop.last %},
{% endunless %}{% if forloop.rindex0 == 1 %}and{% endif %}{% endfor %}
met up in person for the very first RocHack meeting (which ended up being all of them sitting in a room ranting about technology) in September of 2012.
</p>

<p class="indent">
Expand Down