forked from oinam/remote-teams
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
73 lines (71 loc) · 2.02 KB
/
index.html
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
---
layout: default
---
<header class="header">
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-6">
<h1 class="header__title">{{ site.name }}</h1>
<h2 class="header__desc">{{ site.description }}</h2>
</div>
<div class="col-xs-12 col-sm-6">
<aside class="meta-cta">
<p>
<small><em>Send <strong>Pull Request</strong> to add more companies.</em></small>
</p>
<iframe
src="//ghbtns.com/github-btn.html?user=oinam&repo=remote-teams&type=watch&count=true"
allowtransparency="true"
frameborder="0"
scrolling="0"
width="110"
height="20">
</iframe>
<iframe
src="//ghbtns.com/github-btn.html?user=oinam&repo=remote-teams&type=fork&count=true"
allowtransparency="true"
frameborder="0"
scrolling="0"
width="95"
height="20">
</iframe>
</aside>
</div>
</div>
</div>
</header>
<div class="container">
<div class="row">
<div class="col-xs-12">
<table class="table table-striped table-companies">
<thead>
<tr>
<th></th>
<th>Company</th>
<th>Career/Jobs</th>
</tr>
</thead>
<tbody>
{% for company in site.data.companies %}
<tr>
<td></td>
<td><a href="//{{ company.url }}">{{ company.name }}</a></td>
<td><a href="//{{ company.job }}">{{ company.job }}</a></td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
</div>
<footer class="footer">
<div class="container">
<div class="row">
<div class="col-xs-12">
<p>
Details on forking, contributing, running locally, and sending <strong>Pull Request</strong> are documented in the <a href="//github.com/oinam/remote-teams/blob/gh-pages/README.md">README</a>.
</p>
</div>
</div>
</div>
</footer>