-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblog_index.html
More file actions
41 lines (35 loc) · 1.09 KB
/
blog_index.html
File metadata and controls
41 lines (35 loc) · 1.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="All Blog Posts">
<meta name="keywords" content="c, java, javascript, golang, www, html, css, c++, cplusplus, rust, lua, python, programming, gui, 3d, ffmpeg, go, haskell">
<meta charset="UTF-8" />
<title>All Posts</title>
<link rel="icon" type="image/x-icon" href="./assets/favicon.png" />
<link rel="stylesheet" type="text/css" href="./assets/template_main.css" />
</head>
<body>
<div class="container">
<div class="header">
<div class="headerlinks">
<a href="index.html">Home</a>
</div>
<h1 class="title">Index</h1>
</div>
<div class="body">
<div class="post_entry">
<a href="20230820-starting-a-blog.html">Starting a Blog</a>
</div>
<div class="post_entry">
<a href="interfaces-in-go.html">Interfaces in Go</a>
</div>
</div>
<div class="footer">
<hr />
<i>Copyright (C) 2022-2023 aghorui</i> <br/>
<i>Blog generated with <a href="https://github.com/aghorui/burlough">burlough</a></i>
</div>
</div>
</body>
</html>