-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (24 loc) · 1 KB
/
index.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdn.simplecss.org/simple.min.css">
<title>Chasing Programming Wisdom</title>
<!-- <link rel="icon" href="/images/favicon.png"> -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.8.0/styles/default.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.8.0/highlight.min.js"></script>
</head>
<body>
<header>
<a href="/index.html" style="text-decoration: none; color: darkslateblue"><h1>Chasing Programming Wisdom</h1></a>
<small style="float: right">Ramblings by Tomaz Vieira</small>
</header>
<nav class="menu">
<ul>
<li><a href="/articles/programming/when_ui_becomes_api.html">When Ui becomes API</a></li>
<li><a href="/articles/programming/almost_safe_serialization.html">(Almost) Safe Serialization</a></li>
</ul>
</nav>
</body>
</html>