forked from kinlane/women-in-tech
-
Notifications
You must be signed in to change notification settings - Fork 0
/
notable-women-in-history-of-tech.html
executable file
·74 lines (65 loc) · 3.17 KB
/
notable-women-in-history-of-tech.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
74
---
layout: page
title: Women in Tech - Notable
---
<style>
.baaslistingcontainer{
padding-left: 10px;
padding-right: 10px;
width:550px;
}
.baaslisting{
padding-left: 30px;
}
.baaslisting li{
list-style: none;
padding: 30px;
border: 0px solid #000;
}
</style>
<ul class="toolbar">
<li>{"<a href="https://raw.github.com/kinlane/women-in-tech/gh-pages/data/people.json" title="JSON" target="_blank">JSON</a>"}</li>
</ul>
<h1 class="title">Notable Women in Tech</h1>
<p>This is a list of women who have significantly contributed the world of compute, and the Internet. This listing is driven by a JSON listing I have personally compiled. If there is someone you feel should be on this list you can <a href="https://github.com/kinlane/women-in-tech/issues/new">submit your suggestions via the Github issue management for the site</a>, or if you are feeling brave you can <a href="https://github.com/kinlane/women-in-tech">fork the project by editing the JSON file</a>, and submit a pull request when ready, and I'll include in the public website.</p>
{% raw %}
<script id="peopleListingTemplate" type="text/template">
<tr>
<td align="left" valign="top">
<a href="" id="home-logo-link-{{id}}"><img src="{{image_path}}" width="{{image_width}}" align="left" style="padding: 15px;" /></a>
<a href="" id="home-name-link-{{id}}" style="color: #000;"><strong>{{name}}</strong></a><br />{{details}}
</td>
</tr>
<tr>
<td align="center" valign="middle">
<a href="index.html" target="_blank" title="Website" id="home-icon-{{id}}"><img id="home-icon-img-{{id}}" src="https://s3.amazonaws.com/kinlane-productions/bw-icons/bw-home-icon.jpeg" width="25" style="margin-bottom: 5px; padding:15px;" /></a>
</td>
</tr>
<tr>
<td colspan="3"><hr /></td>
</tr>
</script>
{% endraw %}
<div>
<p align="center"><hr /></p>
<table id="peopleListing" style="padding-left: 35px;" width="90%" cellpadding="1" cellspacing="1"></table>
</div>
<script type="text/javascript">
function listCompanies()
{
$.getJSON('data/people.json', function(data) {
toggle = 0;
$.each(data['profile'], function(key, val) {
var template = $('#peopleListingTemplate').html();
var html = Mustache.to_html(template, val);
$('#peopleListing').append(html);
id = val['id'];
website = val['website'];
if(website.length>0){ document.getElementById("home-logo-link-"+id).href=website; }
if(website.length>0){ document.getElementById("home-name-link-"+id).href=website; }
if(website.length>0){ document.getElementById("home-icon-"+id).href=website; } else { document.getElementById("home-icon-img-"+id).style.display='none'; }
});
});
}
listCompanies();
</script>