-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (38 loc) · 1.49 KB
/
index.html
File metadata and controls
38 lines (38 loc) · 1.49 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
28
29
30
31
32
33
34
35
36
37
38
---
layout: default
---
<h1>PythonPune Members</h1>
<em>Note: This page only lists those members who have chosen to publish their information here.</em><br/>
<table id="members_table">
<thead>
<tr>
<th>Name</th>
<th>Github</th>
<th>Bitbucket</th>
<th>Twitter</th>
<th>Blog</th>
<th>Homepage</th>
</tr>
</thead>
<tbody>
{% assign all_pages = site.pages | sort: 'url' %}
{% for page in site.pages %}
{% capture prefix %}{{page.url | truncate: 15, ''}}{% endcapture%}
{% if prefix == "/members/pages/" %}
<tr>
<td><a href="{{page.url}}">{{page.full_name}}{% if page.twitter_id %} (@{{page.twitter_id}}){% endif %}</a></td>
{% if page.github_id %}<td><a href="http://github.com/{{page.github_id}}">✓</a></td>{% else %}<td> </td>{% endif %}
{% if page.bitbucket_id %}<td><a href="http://bitbucket.org/{{page.bitbucket_id}}">✓</a></td>{% else %}<td> </td>{% endif %}
{% if page.twitter_id %}<td><a href="http://twitter.com/{{page.twitter_id}}">✓</a></td>{% else %}<td> </td>{% endif %}
{% if page.blog %}<td><a href="{{page.blog}}">✓</a></td>{% else %}<td> </td>{% endif %}
{% if page.homepage %}<td><a href="{{page.homepage}}">✓</a></td>{% else %}<td> </td>{% endif %}
</tr>
{% endif %}
{% endfor %}
</tbody>
</table>
<script>
function page_callback() {
$("#members_table tbody tr").tsort();
}
</script>