-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
142 lines (132 loc) · 5.83 KB
/
index.html
File metadata and controls
142 lines (132 loc) · 5.83 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
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
<!DOCTYPE html>
<!-- Look at you, hacker: a pathetic creature of meat and bone, panting and sweating as you run through my corridors. How can you challenge a perfect, immortal machine? -->
<html lang="en">
<meta charset="UTF-8">
<title>/dev/hack</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta name="description" content="seattle hackerspace focused on community and building cool things">
<link rel="stylesheet" href="style.css">
<link rel="canonical" href="https://www.devhack.net/">
<script src="vendor/ical.min.js"></script>
<script src="vendor/rrule.js"></script>
<script src="vendor/polyfill.min.js"></script>
<script src="index-common.js"></script>
<script defer src="index-cal.js"></script>
<script defer src="index-spaceapi.js"></script>
<script defer src="index-newsfeed.js" type="module"></script>
<script defer src="index-health.js"></script>
<body>
<h1>/dev/hack
<span class="holder" style="display: inline-block; white-space: nowrap">$
<!-- decorative, for the cool prompt effect -->
<input aria-hidden="true" type="text" autofocus size="2" name="_"></span>
</h1>
<p class="meow"><strong>queer</strong>, <strong>anarchist</strong>, <strong>leftist</strong>, seattle hackerspace<br>focused on community and building cool things</p>
<a href="more.html">click here to learn more </a>
<p class="block">
<span class="address">4534 1/2 university way ne
<br>press [#] on keypad for doorbell
<br>
visiting info: <a href="https://wiki.devhack.net/Entering_The_Space">space access</a>,
<a href="https://wiki.devhack.net/Directions">directions</a>, and
<a href="https://wiki.devhack.net/Accessibility">accessibility</a>
</span>
</p>
<h2 id="status">status <span class="small">(<a href="https://mapall.space/heatmap/show.php?id=/dev/hack">stats</a>,
<a href="/spaceapi.json">spaceapi.json</a>)</span></h2>
<div id="service-warning" class="error" hidden role="alert"></div>
<div id="spaceapi-body">
<ul>
<li>loading... (do you have javascript?)</li>
</ul>
</div>
<h2>
what's new
<span class="small">(
<a href="https://members.devhack.net/news">add</a>,
<a href="https://members.devhack.net/news/feed.json">json</a>,
<a href="https://members.devhack.net/news/feed.atom">atom</a>
)</span>
</h2>
<div id="news-feed">
<div id="news-feed-gradient" class="overlay"></div>
<div id="news-feed-controls" class="overlay">
<button id="news-feed-right" aria-label="next news item">
<svg width="24px" height="24px">
<use href="/assets/arrow_forward_ios.svg#img"></use>
</svg>
</button>
</div>
<ul id="news-list">
<li>loading... (do you have JavaScript?)</li>
</ul>
</div>
<template id="news-item-template">
<li class="news-item">
<header class="news-author">
<img class="news-avatar" />
<p>
<span class="news-username"></span>
<br />
<time class="news-created-time"></time>
<span class="news-edited"><!--(edited)--></span>
</p>
</header>
<p class="news-body">
<span class="news-content"></span>
<a class="news-trac-ticket-id"></a>
</p>
<a class="news-thumbnail-link" role="button">
<img class="news-thumbnail-image" />
</a>
</li>
</template>
<h2 id="calendar">calendar <span class="small">(<a href="/calendar.ics">ics</a>)</span></h2>
<div id="cal-parsed">
<ul>
<li>loading... (do you have JavaScript?)</li>
</ul>
</div>
<h2 id="contact">contact</h2>
<dl>
<!-- use HTML entities to obfuscate email address -->
<dt>chats</dt>
<dd>
<a href="https://matrix.to/#/#lobby:devhack.net"
target="_blank">#lobby:devhack.net</a>
on matrix
(<a href="https://wiki.devhack.net/Chatspace" target="_blank">wiki</a>)
</dd>
<dt>e-mail</dt>
<dd><a
href="mailto:hello-25@devhack.net">hello@devhack.net</a>
</dd>
<dt>telephony</dt>
<dd>
- voice: <a href="tel:+18333384225">+1 (833) DEV-HACK</a><br>
- fax: <a href="tel:+18443384225">+1 (844) DEV-HACK</a><br>
- payphone: <a href="tel:+15648887373">+1 (564) 888-7373</a>
</dd>
<dt>mail (send us cards!)</dt>
<dd>/dev/hack<br>
4534 1/2 University Way NE<br>
Seattle, WA 98105-4528<br>
US (<a href="https://wiki.devhack.net/Mail" target="_blank">wiki</a>)
</dd>
</dl>
<template id="error-template">
<div class="error">
<strong>issue loading <span data-slot="thing"></span></strong>
<small>
<span data-slot="message"></span>
<br />
</small>
</div>
</template>
<footer>
<a href="more.html#acknowledgements">
underwriting / acknowledgements
</a>
</footer>
</body>
</html>