-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (61 loc) · 1.64 KB
/
index.html
File metadata and controls
63 lines (61 loc) · 1.64 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Personal website of mathealgou, my projects and links."
/>
<title>mathealgou</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="stylesheet" href="index.css" />
</head>
<body>
<main>
<section class="content">
<div class="titleContainer">
<div class="square"></div>
<h1>mathealgou</h1>
</div>
<h2>Links</h2>
<ul>
<li>
<a href="https://github.com/mathealgou" target="_blank">github</a>
</li>
</ul>
<h2>Projects</h2>
<ul>
<li>
<a href="/reporeport" target="_blank"> reporeport </a>
<p>
Fast AI-free repository analysis tool that counts files and lines
by type, infers project type, and provides a concise summary
report.
</p>
</li>
<li>
<a href="https://github.com/mathealgou/dashboard" target="_blank">
dashboard
</a>
<p>
A lightweight dashboard that pings a small set of personal
services and displays their health.
</p>
</li>
<li>
<a href="https://github.com/mathealgou/minikeep" target="_blank">
minikeep
</a>
<p>
Mini Keep is a tiny note-taking web app shipped as one Python
file. It serves a responsive HTML interface, a JSON API, and
handles storage/logging without extra dependencies.
</p>
</li>
</ul>
</section>
</main>
</body>
</html>