-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (39 loc) · 1.56 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
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html lang="en">
<head>
<title>GoTamer GoLang Packages</title>
<meta name="description" content="List of GoLang Package by GoTamer">
<meta name="keywords" content="golang, gotamer, tamer, package">
<meta name="author" content="TaMeR">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
</head>
<body>
<header class="w3-container w3-black w3-center" style="padding:30px 16px">
<p class="w3-xlarge">GoTamer GoLang Packages</p>
</header>
<div class="w3-container">
<div class="w3-panel w3-card-2"><p>
<a href="hdkeys">go.hansaray.pw/hdkeys</a><br>     A library to create Bitcoin and Nostr keys from the same mnemonic seeds, and a command-line tool that uses this library</p>
</div><div class="w3-panel w3-card-2"><p>
<a href="ntpc">go.hansaray.pw/ntpc</a><br>     Implementation of an NTP client in Go</p>
</div><div class="w3-panel w3-card-2"><p>
<a href="citadel">go.hansaray.pw/citadel</a><br>     Library to access Citadel email and collaboration servers from Go, and a command-line tool that uses this library to sync data with the server.</p>
</div>
</div>
<footer class="w3-container w3-center w3-padding-64">
<p>© <a href="http://tamer.pw">TaMeR</a></p>
</footer>
<script>
function menu() {
var x = document.getElementById("navid");
if (x.className.indexOf("w3-show") == -1) {
x.className += " w3-show";
} else {
x.className = x.className.replace(" w3-show", "");
}
}
</script>
</body>
</html>