forked from vanruby/vanruby.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfriends.html
More file actions
27 lines (24 loc) · 1.08 KB
/
friends.html
File metadata and controls
27 lines (24 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
---
layout: layout
title: "VanRuby - Vancouver Ruby on Rails Group"
---
<div class="row">
<div class="col-md-12">
<h1>Friends</h1>
<p>We hope to curate a list of those dear to our community. Yes, yes, it's super incomplete at the moment - but we're just getting started. <a href="http://www.youtube.com/watch?v=NQ-8IuUkJJc&feature=youtu.be&t=1m45s" target="_blank">The complete list has to be at least three times bigger than this.</a></p>
{% for member in site.members %}
<div class="media well">
<img class="media-object pull-left" data-gravatar-email="{{ member.gravatar }}" src="images/blank-avatar.png">
<div class="media-body">
<strong class="media-heading">{{ member.name }}</strong> <br />
{{ member.blurb }}
<div>
<a href="https://twitter.com/{{ member.twitter }}"><span class="fui-twitter"></span> {{ member.twitter }}</a>
·
<a href="{{ member.url }}"><span class="fui-link"></span> {{ member.url }}</a>
</div>
</div>
</div>
{% endfor %}
</div>
</div>