forked from pythonpune/pythonpune.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (30 loc) · 1.04 KB
/
index.html
File metadata and controls
30 lines (30 loc) · 1.04 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
---
layout: default
---
<h3><em>Note: This page and company catalog is still under construction</em></h3>
<h3>Company Catalog: List of Companies in Pune developing software using Python</h3>
<em>Note: This page lists information about companies with development centers in and around Pune using python. The information is from the companies themselves or based on the awareness of pythonpune members. Please feel free to contact the site administrators for any corrections etc.</em><br/>
<table id="companies_table">
<thead>
<tr>
<th>Name</th>
<th>URL</th>
</tr>
</thead>
<tbody>
{% for page in site.pages %}
{% capture prefix %}{{page.url | truncate: 17, ''}}{% endcapture%}
{% if prefix == "/companies/pages/" %}
<tr>
<td><a href="{{page.url}}">{{page.name}}</a></td>
<td><a href="{{page.company_url}}">{{page.company_url}}</a></td>
</tr>
{% endif %}
{% endfor %}
</tbody>
</table>
<script>
function page_callback() {
$("#companies_table tbody tr").tsort();
}
</script>