blog.html
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
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Prithu Goswami</title> <meta name="description" content="Prithu Goswami's personal website"> <meta name="author" content="Prithu Goswami"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link href="https://fonts.googleapis.com/css?family=Roboto+Mono:300,400,700" rel="stylesheet"> <link rel="stylesheet" href="/css/main.css"> <link rel="stylesheet" href="/css/blog.css"> <link rel="icon" type="img/png" href="/img/favicon.png"> </head> <body> <p class="wip">WIP</p> <nav> <ul> <li><a href="/">About me</a></li> <li><a href="/projects">Projects</a></li> <li><a href="/blog">Blog</a></li> <li><a href="/links">Links</a></li> </ul> </nav> <div class="bcontainer"> <div class="bcontent"> <h1>Latest Posts</h1> <ul class="posts"> <li><a href="/post.html">Designing this blog from scratch</a></li> <li>Utilitarian design principles</li> <li>Using figma for quick prototype design</li> <li>Learning x86 Assembly</li> <li>Learning from CTFs about IT security</li> <li>The web is cluttered</li> <li>The simplicity of IRC</li> <li>Simple static site generator</li> </ul> </div> </div> </body> </html>