-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (39 loc) · 1.3 KB
/
index.html
File metadata and controls
43 lines (39 loc) · 1.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Machina iO</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" href="favicon.ico" type="image/x-icon">
</head>
<body>
<div class="container">
<div class="header">
<div class="logo">
<a href="index.html">
<img src="logo.png" alt="Machina iO Logo">
</a>
</div>
<div class="nav">
<a href="about.html">about</a>
<a href="subscribe.html">subscribe</a>
</div>
</div>
<div class="article-list">
<a href="posts/unboxing.html" style="text-decoration: none; color: inherit;">
<div>
<span>UNBOXING IO: BUILDING FROM FAMILIAR CRYPTO BLOCKS</span>
<span>2025-07-01</span>
</div>
</a>
<a href="posts/hello_world_first.html" style="text-decoration: none; color: inherit;">
<div>
<span>HELLO, WORLD: THE FIRST SIGNS OF PRACTICAL IO</span>
<span>2025-04-28</span>
</div>
</a>
</div>
</div>
</body>
</html>