-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
172 lines (166 loc) · 5.42 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
<!DOCTYPE html>
<html>
<head>
<title>Foo</title>
<meta charset='utf-8' />
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0' />
<style type='text/css'>
body {
font-family: 'Helvetica';
letter-spacing:-5px;
background:#000;
background-size:100%;
color:#fff;
margin:0;
padding:0;
font-weight:bold;
}
h1, h2, h3, p {
margin:0;
}
em, a {
font-style:normal;
color:#8dbd0c;
}
a {
background: #34d0e7;
color:#000;
text-decoration:none;
}
img {
width:100%;
}
div {
cursor:pointer;
cursor:hand;
position:absolute;
top:0;
left:0;
}
</style>
<script type='text/javascript'>
window.onload = function() {
var s = document.getElementsByTagName('div'), cur = 0, ti;
if (!s) return;
function go(n) {
cur = n;
var i = 1e3, e = s[n], t;
document.body.className = e.dataset.bodyclass || '';
for (var k = 0; k < s.length; k++) s[k].style.display = 'none';
e.style.display = 'inline';
e.style.fontSize = i + 'px';
if (e.firstChild && e.firstChild.nodeName === 'IMG') {
document.body.style.backgroundImage = 'url(' + e.firstChild.src + ')';
e.firstChild.style.display = 'none';
if ('classList' in e) e.classList.add('imageText');
} else {
document.body.style.backgroundImage = '';
document.body.style.backgroundColor = e.style.backgroundColor;
}
if (ti !== undefined) window.clearInterval(ti);
t = parseInt(e.dataset.timeToNext || 0, 10);
if (t > 0) ti = window.setTimeout(fwd, (t * 1000));
while (
e.offsetWidth > window.innerWidth ||
e.offsetHeight > window.innerHeight) {
e.style.fontSize = (i -= 2) + 'px';
if (i < 0) break;
}
e.style.marginTop = ((window.innerHeight - e.offsetHeight) / 2) + 'px';
if (window.location.hash !== n) window.location.hash = n;
document.title = e.textContent || e.innerText;
}
document.onclick = function() { go(++cur % (s.length)); };
function fwd() { go(Math.min(s.length - 1, ++cur)); }
function rev() { go(Math.max(0, --cur)); }
document.onkeydown = function(e) {
if (e.which === 39 || e.which === 34 || e.which === 40) fwd();
if (e.which === 37 || e.which === 33 || e.which === 38) rev();
};
document.ontouchstart = function(e) {
var x0 = e.changedTouches[0].pageX;
document.ontouchend = function(e) {
var x1 = e.changedTouches[0].pageX;
if (x1 - x0 < 0) fwd();
if (x1 - x0 > 0) rev();
};
};
function parse_hash() {
return Math.max(Math.min(
s.length - 1,
parseInt(window.location.hash.substring(1), 10)), 0);
}
if (window.location.hash) cur = parse_hash() || cur;
window.onhashchange = function() {
var c = parse_hash();
if (c !== cur) go(c);
};
go(cur);
};
</script></head><body>
<div><h1 id="hi-i-m-todrobbins">Hi, I'm @todrobbins</h1>
</div>
<div><h1 id="i-m-with-opensaltlake">I'm with @OpenSaltLake</h1>
</div>
<div><h1 id="a-local-codeforamerica-brigade">a local @codeforamerica brigade</h1>
</div>
<div><h1 id="localwiki-org">LocalWiki.org</h1>
</div>
<div><h1 id="-slc">/slc</h1>
</div>
<div><h1 id="-instructure">@instructure</h1>
</div>
<div><p><img src="https://instructurecareers.silkroad.com/map_images/main/SiteGen/instructureext/Content/Uploads/Images/Reception_Pic.jpg" alt=""></p>
</div>
<div><h1 id="what-is-localwiki-">What is LocalWiki?</h1>
</div>
<div><p><img src="https://dl.dropboxusercontent.com/u/5467096/localwiki-history.png" alt=""></p>
</div>
<div><h1 id="localwiki-is-a-grassroots-effort">LocalWiki is a grassroots effort</h1>
</div>
<div><h1 id="to-collect-share-and-open">to collect, share, and open</h1>
</div>
<div><h1 id="the-world-s-local-knowledge">the world’s local knowledge</h1>
</div>
<div><h1 id="articles-maps-tags-images-histories-lists">articles, maps, tags, images, histories, lists</h1>
</div>
<div><h1 id="do">DO</h1>
</div>
<div><h1 id="share-local-knowledge">Share Local knowledge</h1>
</div>
<div><h1 id="do">DO</h1>
</div>
<div><h1 id="celebrate-everybody-s-knowledge">Celebrate everybody's knowledge</h1>
</div>
<div><h1 id="do">DO</h1>
</div>
<div><h1 id="add-useful-interesting-information">Add useful, interesting information</h1>
</div>
<div><h1 id="do">DO</h1>
</div>
<div><h1 id="look-beyond-the-official-story-">Look beyond the “official story”</h1>
</div>
<div><h1 id="do">DO</h1>
</div>
<div><h1 id="celebrate-things-in-our-community-in-a-non-commercial-way">Celebrate things in our community in a non-commercial way</h1>
</div>
<div><h1 id="do-not">DO NOT</h1>
</div>
<div><h1 id="use-as-a-vehicle-for-commercial-promotion-or-gain">Use as a vehicle for commercial promotion or gain</h1>
</div>
<div><h1 id="do-not">DO NOT</h1>
</div>
<div><h1 id="post-content-that-is-not-compatible-with-cc-by-license">post content that is not compatible with CC-BY license</h1>
</div>
<div><h1 id="do-not">DO NOT</h1>
</div>
<div><h1 id="use-localwiki-for-being-malicious-towards-a-person-place-or-object">use LocalWiki for being malicious towards a person, place, or object</h1>
</div>
<div><h1 id="do-not">DO NOT</h1>
</div>
<div><h1 id="use-localwiki-to-support-illegal-activity">use LocalWiki to support illegal activity</h1>
</div>
<div><h1 id="so-">So...</h1>
</div>
<div><h1 id="let-s-edit-slc">Let's edit /slc</h1>
</div>