-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
667 lines (586 loc) · 17 KB
/
index.html
File metadata and controls
667 lines (586 loc) · 17 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
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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Matthew Cates - Legal Researcher</title>
<link href="https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=DM+Mono:wght@300;400;500&family=DM+Sans:wght@300;400;500&display=swap" rel="stylesheet">
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--paper: #F5F0E8;
--paper2: #EDE8DC;
--ink: #1A1814;
--ink2: #3D3A33;
--ink3: #7A7568;
--ink4: #B0A898;
--red: #C0392B;
--red-dim: rgba(192,57,43,0.08);
--green: #2D6A4F;
--border: rgba(26,24,20,0.12);
--border2: rgba(26,24,20,0.06);
}
html { scroll-behavior: smooth; }
body {
font-family: 'DM Sans', sans-serif;
background: var(--paper);
color: var(--ink);
font-weight: 300;
}
/* ── NAV ── */
nav {
position: sticky;
top: 0;
z-index: 100;
background: var(--paper);
border-bottom: 1px solid var(--border);
padding: 0 40px;
height: 52px;
display: flex;
align-items: center;
justify-content: space-between;
}
.nav-logo {
font-family: 'DM Mono', monospace;
font-size: 12px;
font-weight: 500;
letter-spacing: 0.08em;
color: var(--ink);
text-decoration: none;
text-transform: uppercase;
}
.nav-links {
display: flex;
gap: 32px;
list-style: none;
}
.nav-links a {
font-size: 12px;
font-family: 'DM Mono', monospace;
color: var(--ink3);
text-decoration: none;
letter-spacing: 0.06em;
text-transform: uppercase;
transition: color 0.15s;
position: relative;
}
.nav-links a::after {
content: '';
position: absolute;
bottom: -2px;
left: 0;
width: 0;
height: 1px;
background: var(--red);
transition: width 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after { width: 100%; background: var(--red); }
/* ── MASTHEAD ── */
.masthead {
border-bottom: 3px solid var(--ink);
padding: 0 40px;
}
.masthead-rule {
height: 1px;
background: var(--ink);
margin-bottom: 24px;
}
.masthead-dateline {
font-family: 'DM Mono', monospace;
font-size: 10px;
letter-spacing: 0.12em;
color: var(--ink3);
text-transform: uppercase;
padding: 16px 0 0;
display: flex;
justify-content: space-between;
align-items: center;
}
.masthead-title {
font-family: 'Playfair Display', serif;
font-size: clamp(56px, 9vw, 120px);
font-weight: 900;
line-height: 0.9;
letter-spacing: -0.02em;
padding: 12px 0 20px;
display: flex;
gap: 0.2em;
flex-wrap: wrap;
}
.masthead-title .italic { font-style: italic; color: var(--red); }
.masthead-sub {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 0;
border-top: 1px solid var(--border);
margin-bottom: 0;
}
.masthead-col {
padding: 14px 0;
font-size: 11px;
font-family: 'DM Mono', monospace;
color: var(--ink3);
letter-spacing: 0.05em;
line-height: 1.7;
}
.masthead-col + .masthead-col {
border-left: 1px solid var(--border);
padding-left: 24px;
}
/* ── GRID LAYOUT ── */
.editorial-grid {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-template-rows: auto;
border-bottom: 1px solid var(--border);
}
.grid-cell {
padding: 40px;
border-right: 1px solid var(--border);
border-bottom: 1px solid var(--border);
}
.grid-cell:nth-child(3n) { border-right: none; }
.grid-cell.span2 {
grid-column: span 2;
}
.grid-cell.span3 {
grid-column: span 3;
border-right: none;
}
.cell-label {
font-family: 'DM Mono', monospace;
font-size: 9px;
letter-spacing: 0.14em;
color: var(--ink4);
text-transform: uppercase;
margin-bottom: 16px;
display: flex;
align-items: center;
gap: 8px;
}
.cell-label::before {
content: '';
display: block;
width: 20px;
height: 1px;
background: var(--red);
}
/* ── LEDE / INTRO ── */
.lede {
font-family: 'Playfair Display', serif;
font-size: clamp(20px, 2.5vw, 28px);
line-height: 1.4;
font-weight: 400;
color: var(--ink);
}
.lede em { font-style: italic; color: var(--red); }
.body-copy {
font-size: 14px;
line-height: 1.8;
color: var(--ink2);
font-weight: 300;
margin-top: 20px;
}
.body-copy p + p { margin-top: 12px; }
.body-copy a {
color: var(--ink);
text-decoration: underline;
text-underline-offset: 3px;
}
/* ── PULL QUOTE ── */
.pull-quote {
border-top: 3px solid var(--ink);
border-bottom: 1px solid var(--ink);
padding: 24px 0;
font-family: 'Playfair Display', serif;
font-size: clamp(18px, 2vw, 24px);
font-style: italic;
line-height: 1.5;
color: var(--ink);
}
.pull-quote cite {
display: block;
font-family: 'DM Mono', monospace;
font-size: 10px;
font-style: normal;
letter-spacing: 0.1em;
color: var(--ink3);
margin-top: 12px;
text-transform: uppercase;
}
/* ── FEATURED PROJECT ── */
.project-featured {
display: block;
text-decoration: none;
color: inherit;
background: var(--ink);
padding: 32px;
border-radius: 2px;
transition: opacity 0.2s;
}
.project-featured:hover { opacity: 0.9; }
.project-featured .cell-label { color: var(--ink4); }
.project-featured .cell-label::before { background: var(--red); }
.project-featured-title {
font-family: 'Playfair Display', serif;
font-size: 28px;
font-weight: 700;
color: var(--paper);
line-height: 1.2;
margin-bottom: 12px;
}
.project-featured-desc {
font-size: 13px;
color: var(--ink4);
line-height: 1.7;
font-weight: 300;
}
.project-featured-link {
display: inline-flex;
align-items: center;
gap: 6px;
margin-top: 20px;
font-family: 'DM Mono', monospace;
font-size: 11px;
color: var(--red);
letter-spacing: 0.06em;
text-transform: uppercase;
}
/* ── SIDE COLUMN ── */
.side-stack { display: flex; flex-direction: column; gap: 0; }
.side-item {
padding: 20px 0;
border-bottom: 1px solid var(--border);
}
.side-item:last-child { border-bottom: none; }
.side-item-label {
font-family: 'DM Mono', monospace;
font-size: 9px;
letter-spacing: 0.12em;
color: var(--red);
text-transform: uppercase;
margin-bottom: 6px;
}
.side-item-title {
font-family: 'Playfair Display', serif;
font-size: 16px;
line-height: 1.3;
color: var(--ink);
margin-bottom: 6px;
}
.side-item-meta {
font-size: 11px;
color: var(--ink3);
font-family: 'DM Mono', monospace;
}
/* ── INTERESTS ROW ── */
.interests-row {
display: flex;
gap: 0;
border-bottom: 1px solid var(--border);
}
.interest-block {
flex: 1;
padding: 32px 40px;
border-right: 1px solid var(--border);
}
.interest-block:last-child { border-right: none; }
.interest-num {
font-family: 'Playfair Display', serif;
font-size: 48px;
font-weight: 900;
color: var(--border);
line-height: 1;
margin-bottom: 8px;
}
.interest-title {
font-family: 'Playfair Display', serif;
font-size: 18px;
font-weight: 700;
margin-bottom: 8px;
color: var(--ink);
}
.interest-desc {
font-size: 12px;
color: var(--ink3);
line-height: 1.7;
}
/* ── MARQUEE ── */
.marquee-bar {
background: var(--ink);
padding: 12px 0;
overflow: hidden;
white-space: nowrap;
}
.marquee-track {
display: inline-flex;
gap: 0;
animation: marquee 30s linear infinite;
}
.marquee-item {
font-family: 'DM Mono', monospace;
font-size: 11px;
letter-spacing: 0.08em;
color: var(--paper2);
text-transform: uppercase;
padding: 0 40px;
}
.marquee-item .sep {
color: var(--red);
margin-left: 40px;
}
@keyframes marquee {
from { transform: translateX(0); }
to { transform: translateX(-50%); }
}
/* ── FOOTER ── */
footer {
padding: 40px;
border-top: 3px solid var(--ink);
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 40px;
}
.footer-title {
font-family: 'Playfair Display', serif;
font-size: 28px;
font-weight: 900;
line-height: 1;
margin-bottom: 20px;
}
.footer-title em { font-style: italic; color: var(--red); }
.footer-col-label {
font-family: 'DM Mono', monospace;
font-size: 9px;
letter-spacing: 0.14em;
color: var(--ink4);
text-transform: uppercase;
margin-bottom: 14px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
font-size: 13px;
color: var(--ink2);
text-decoration: none;
transition: color 0.15s;
}
.footer-links a:hover { color: var(--red); }
.footer-copy {
font-family: 'DM Mono', monospace;
font-size: 10px;
color: var(--ink4);
letter-spacing: 0.06em;
margin-top: 16px;
}
/* ── TAGS ── */
.tag {
display: inline-block;
font-family: 'DM Mono', monospace;
font-size: 9px;
letter-spacing: 0.08em;
text-transform: uppercase;
padding: 3px 8px;
border: 1px solid var(--border);
border-radius: 2px;
color: var(--ink3);
margin-right: 4px;
margin-bottom: 4px;
}
/* ── RESPONSIVE ── */
@media (max-width: 900px) {
nav { padding: 0 20px; }
.nav-links { gap: 20px; }
.masthead { padding: 0 20px; }
.masthead-sub { grid-template-columns: 1fr; }
.masthead-col + .masthead-col { border-left: none; border-top: 1px solid var(--border); padding-left: 0; }
.editorial-grid { grid-template-columns: 1fr; }
.grid-cell.span2, .grid-cell.span3 { grid-column: span 1; }
.grid-cell { padding: 28px 20px; border-right: none; }
.interests-row { flex-direction: column; }
.interest-block { border-right: none; border-bottom: 1px solid var(--border); padding: 24px 20px; }
footer { grid-template-columns: 1fr; padding: 28px 20px; gap: 28px; }
}
@media (max-width: 600px) {
.nav-links { display: none; }
.masthead-title { font-size: 52px; }
}
/* ── FADE IN ── */
@keyframes fadeUp {
from { opacity: 0; transform: translateY(16px); }
to { opacity: 1; transform: translateY(0); }
}
.masthead-title { animation: fadeUp 0.6s ease forwards; }
.masthead-dateline { animation: fadeUp 0.4s ease forwards; }
</style>
</head>
<body>
<nav>
<a class="nav-logo" href="index.html">M.T. Cates</a>
<ul class="nav-links">
<li><a href="index.html" class="active">Home</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="writing.html">Writing</a></li>
<li><a href="reading.html">Reading</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
<!-- MASTHEAD -->
<div class="masthead">
<div class="masthead-dateline">
<span>Athens, Georgia · University of Georgia</span>
<span>Legal Researcher</span>
</div>
<div class="masthead-title">
<span>Connect</span>
<span class="italic">with</span>
<span>communities.</span>
</div>
<div class="masthead-sub">
<div class="masthead-col">
Research<br>
The law, Community networks and Psychology & civic infrastructure
</div>
<div class="masthead-col">
Work<br>
UGA · Athens, GA
</div>
<div class="masthead-col">
Latest on GitHub<br>
<span id="gh-project">
<a href="https://github.com/mtcates-lab" target="_blank" rel="noopener"
style="color:inherit;text-decoration:none;">github.com/mtcates-lab</a>
</span>
</div>
</div>
</div>
<script>
// Auto-fetch latest GitHub repo — no proxy needed, GitHub allows cross-origin requests
fetch('https://api.github.com/users/mtcates-lab/repos?sort=updated&per_page=5')
.then(r => r.json())
.then(repos => {
// Filter out the personal site repo itself
const filtered = repos.filter(r => r.name !== 'mtcates-lab.github.io');
const latest = filtered[0];
if (!latest) return;
const el = document.getElementById('gh-project');
el.innerHTML = `<a href="${latest.html_url}" target="_blank" rel="noopener"
style="color:inherit;text-decoration:underline;text-underline-offset:3px;">
${latest.name}</a>${latest.description ? `<br><span style="font-size:10px;color:var(--ink3)">${latest.description}</span>` : ''}`;
})
.catch(() => {}); // fail silently, fallback link already showing
</script>
<!-- MARQUEE -->
<div class="marquee-bar">
<div class="marquee-track">
<span class="marquee-item">Mutual Aid <span class="sep">✦</span></span>
<span class="marquee-item">Civic Infrastructure <span class="sep">✦</span></span>
<span class="marquee-item">Community Organizing <span class="sep">✦</span></span>
<span class="marquee-item">Open Source Tools <span class="sep">✦</span></span>
<span class="marquee-item">Mutual Aid <span class="sep">✦</span></span>
<span class="marquee-item">Network Analysis <span class="sep">✦</span></span>
<span class="marquee-item">Civic Infrastructure <span class="sep">✦</span></span>
<span class="marquee-item">Community Organizing <span class="sep">✦</span></span>
<span class="marquee-item">Information Theory <span class="sep">✦</span></span>
<span class="marquee-item">Open Source Tools <span class="sep">✦</span></span>
</div>
</div>
<!-- MAIN EDITORIAL GRID -->
<div class="editorial-grid">
<!-- LEDE — spans 2 cols -->
<div class="grid-cell span2">
<div class="cell-label">Who I am</div>
<div class="lede">
I like to create networks.
To <em>see the broader view</em> of what holds communities together.
</div>
<div class="body-copy">
<p>I'm a researcher at the University of Georgia and a community volunteer in Athens, Georgia. My work often, but not limited to, sits at the intersection of civic infrastructure, network analysis, legal research, and community psychology</p>
<p> When I am not working on side projects of whatever I'm obsessed with that month, I love to attend concerts, go see movies, hang with friends, play board games.</p>
</div>
<div style="margin-top: 20px;">
<span class="tag">Network analysis</span>
<span class="tag">Mutual aid</span>
<span class="tag">Civic tech</span>
<span class="tag">Community pscyhology</span>
<span class="tag">Open source</span>
</div>
</div>
<!-- SIDE: currently reading -->
<div class="grid-cell">
<div class="cell-label">Currently</div>
<div class="side-stack">
<div class="side-item">
<div class="side-item-label">Reading</div>
<div class="side-item-title">The 26 Words That Created the Interet</div>
<div class="side-item-meta">Jeff Kosseff</div>
</div>
<div class="side-item">
<div class="side-item-label">Building</div>
<div class="side-item-title">Vist my projects page</div>
</div>
</div>
</div>
<!-- PULL QUOTE — full width -->
<div class="grid-cell span3" style="padding: 40px;">
<div class="pull-quote">
"Communities have always taken care of each other. That knowledge of connection used to live in neighborhood memory."
<cite>— On the Invisible Hand Athens project</cite>
</div>
</div>
<!-- FEATURED PROJECT -->
<div class="grid-cell span2" style="background: var(--paper2);">
<div class="cell-label">Featured project</div>
<a class="project-featured" href="https://mtcates-lab.github.io/invisible-hand-athens" target="_blank" rel="noopener">
<div class="cell-label" style="color: var(--ink4);">Active · Athens, GA</div>
<div class="project-featured-title">The Invisible Hand of Athens</div>
<div class="project-featured-desc">
A civic network graph mapping the organizations, mutual aid groups, collectives, and faith communities doing community care work in Athens, Georgia. Who refers to whom. Where resources flow. Where the gaps are.
</div>
<div class="project-featured-link">Visit the project →</div>
</a>
</div>
<!-- SIDE: from the blog -->
<div class="grid-cell">
<div class="cell-label">From the writing</div>
<div class="side-stack">
<div class="side-item">
<div class="side-item-label">Latest</div>
<div class="side-item-title"><a href="https://internetslawboy.substack.com/p/youre-not-playing-how-the-game-is" target="_blank" rel="noopener" style="color:inherit;text-decoration:none;">You're not playing how the game is meant to be played. But Neither was I.</a></div>
<div class="side-item-meta">March 2026 · InternetsLawBoy</div>
</div>
</div>
<a href="writing.html" style="display:inline-flex;align-items:center;gap:6px;margin-top:20px;font-family:'DM Mono',monospace;font-size:11px;color:var(--red);letter-spacing:0.06em;text-transform:uppercase;text-decoration:none;">
All writing →
</a>
</div>
</div>
<!-- FOOTER -->
<footer>
<div>
<div class="footer-title">M.T.<br><em>Cates</em></div>
<div class="footer-copy">Athens, Georgia<br>University of Georgia<br>mtcates@uga.edu</div>
</div>
<div>
<div class="footer-col-label">Pages</div>
<ul class="footer-links">
<li><a href="index.html">Home</a></li>
<li><a href="projects.html">Projects</a></li>
<li><a href="writing.html">Writing</a></li>
<li><a href="reading.html">Reading</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
<div>
<div class="footer-col-label">Elsewhere</div>
<ul class="footer-links">
<li><a href="https://github.com/mtcates-lab" target="_blank">GitHub</a></li>
<li><a href="#" target="_blank">Substack</a></li>
</ul>
</div>
</footer>
</body>
</html>