forked from jlord/lending-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
94 lines (85 loc) · 4.17 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html lang="en">
<title>T4SJ #MoreThanCode Quotes</title>
<meta charset='utf-8'>
<script type="text/javascript" src="js/ICanHaz.js"></script>
<script type="text/javascript" src='js/jquery.js'></script>
<script type="text/javascript" src='js/site.js'></script>
<script type="text/javascript" src='js/tabletop1.3.4.js'></script>
<link rel="shortcut icon" href="https://raw.githubusercontent.com/jlord/lending-library/gh-pages/favico.png"/>
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,400,600,700,900' rel='stylesheet' type='text/css'>
<link media="screen" rel="stylesheet" type="text/css" href="css/site.css">
</head>
<body>
<header class="container">
<h1>T4SJ #MoreThanCode Interview Quotes</h1>
<ul class="nav">
<li><strong>Read more from #MoreThanCode</strong></li>
<li>Powered by @jlord's Lending Library</li>
<li><a href="#info">Learn more</a></li>
</ul>
</header>
<div id="filters" class="container">
<input id="toolSearch" type="search" placeholder="Search for something..."></input>
<form name="catSearchForm">
<input list="catSearch" placeholder="Explore a category">
<datalist id="catSearch">
<option data-value="ecosystem">Ecosystem</option>
<option data-value="demographics">Demographics</option>
<option data-value="practitioner experiences">Practitioner Experiences</option>
<option data-value="Stories of Success and Failure">Stories of Success and Failure</option>
<option data-value="Visions and Values">Visions and Values</option>
<option data-value="Role of technology in the work">Role of technology in the work</option>
<option data-value="Unsung s/heroes">Unsung s/heroes</option>
<option data-value="Funding and Resourcing">Funding and Resourcing</option>
<option data-value="Pathways, Barriers, and Support">Pathways, Barriers, and Support</option>
<option data-value="Community Accountability">Community Accountability</option>
<option data-value="Stories of Failure">Stories of Failure</option>
<option data-value="Stories of Success">Stories of Success</option>
</datalist>
</input>
</form>
<span class="clear sml-button">Clear</span>
</div>
<div id="tools" class="container"><span class="flash animated">LOADING...</span></div>
<div id="info" class="container">
<div class="span1">
<h4>#MoreThanCode</h4>
<p>Add info about the report here.</p>
<p></p>
<p>More details about this project <a href="https://t4sj.co" target="_blank">here</a>.
</div>
<div class="span1">
<h4>Fork this Project</h4>
<p>The site is open source (free for all), uses a Google Spreadsheet for the data and is designed to be duplicated and live in minutes (Fork-n-go!). You can set up your own by following the instructions attached to the <a href="http://www.github.com/jlord/lending-library" target="_blank">project's code</a> on GitHub. GitHub also hosts these pages for free with <a href="http://pages.github.com" target="_blank">GitHub Pages</a>.
<p>
<a class="imglink" href="http://jlord.github.io/forkngo" target="_blank">
<img src="https://raw.githubusercontent.com/jlord/forkngo/gh-pages/badges/charcoal.png" width="200">
</a>
</p>
<p>Built by <a href="http://www.twitter.com/jllord">@jllord</a>.
</div>
</div>
<script id="tools" type="text/html">
{{#rows}}
<div id="{{rowNumber}}" class="tool-box cat-{{categoryid}}">
<span class="quote-heading">{{description}}</span>
<div class="tool-box-bottom {{rowNumber}}">
<ul>
<li class="quote">{{quote}}</li>
<li><strong>{{interviewee}}{{#title}}, {{title}}{{/title}}</strong></li>
<li class="category"><small>{{category}}{{#category2}}, {{category2}} {{/category2}}</small></li>
<li><a href="https://opentechinstitute.github.io/t4sjquotes/#{{id}}"><small>LINK</small></a></li>
</ul>
</div>
</div>
{{/rows}}
</script>
<script type="text/javascript">
document.addEventListener('DOMContentLoaded', function() {
var URL = "1p3GZXaC51wxG030eQBGC4KRPwSBz20oiPI2lfpL7Azw"
Tabletop.init( { key: URL, callback: initialize, simpleSheet: true } )
})
</script>
</body>
</html>