forked from indieweb/blank-gh-site
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
86 lines (86 loc) · 2.88 KB
/
index.html
File metadata and controls
86 lines (86 loc) · 2.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="mobile-web-app-capable" content="yes" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="authorization_endpoint" href="https://indieauth.com/auth">
<link rel="token_endpoint" href="https://tokens.indieauth.com/token">
<link rel="microsub" href="https://aperture.p3k.io/microsub/1068">
<title>fomrat's website</title>
<style>
@media (prefers-color-scheme: dark) {
html { background-color: #111111; color: #fbfbfb; }
a { color: #ca8465; }
}
body {
line-height: 1.6;
font-family: Menlo, Consolas, Monaco, Adwaita Mono, Liberation Mono, Lucida Console, monospace;
text-align: center;
margin: 1rem auto;
padding: 1rem;
min-height: 90vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
max-width: 1600px;
}
img.u-photo {
border-radius: 50%;
width: 200px;
height: 200px;
object-fit: cover;
max-width: 40vw;
max-height: 40vw;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
margin-bottom: 1rem;
}
ul { padding: 0; list-style: none; }
ul li { margin: 0.5rem 0; }
section {
margin-top: 2rem;
max-width: 600px;
padding: 1.5rem;
border-top: 1px solid rgba(128, 128, 128, 0.2);
}
a {
text-decoration: none;
transition: opacity 0.2s;
}
a:hover { opacity: 0.7; }
h2 {
font-size: 1.2rem;
font-weight: 600;
margin-bottom: 1rem;
}
</style>
</head>
<body>
<main class="h-card" rel="author">
<img class="u-photo" alt="Brian MacAskill profile photo" src="b-and-w-brian.jpg" />
<h1>
I'm <span class="p-name">Brian MacAskill</span>.
</h1>
<p class="p-note">
I spend my time maintaining a homelab, tinkering with networks,
automation, and self-hosted services.<br><br>
I also read a lot.
</p>
<ul>
<li><a class="u-uid u-url" href="https://fomrat.com/">fomrat's website</a></li>
<li>Github: <a class="u-url" href="https://github.com/fomrat" rel="me">@fomrat</a></li>
<li>Bluesky: <a class="u-url" href="https://bsky.app/profile/fomrat.com" rel="me">@fomrat.com</a></li>
<li>X/Twitter: <a class="u-url" href="https://x.com/fomrat" rel="me">@fomrat</a></li>
<li>Reddit: <a class="u-url" href="https://reddit.com/user/fomrat" rel="me">u/fomrat</a></li>
</ul>
</main>
<section>
<h2>Now</h2>
<p>I am exploring the <a href="https://indieweb.org">IndieWeb</a> and building my personal site.</p>
<p>I am reading <em>The MANIAC</em> by Benjamín Labatut;
<em>Football </em> by Chuck Klosterman.</p>
<p><small>Updated March 2026 — <a href="https://nownownow.com/about">what's a now page?</a></small></p>
</section>
</body>
</html>