-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (72 loc) · 2.86 KB
/
index.html
File metadata and controls
78 lines (72 loc) · 2.86 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<!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">
<figure class="w3-bar-item w3-right">
<img src="img/Go-Logo_White.svg" style="width:100px">
</figure>
<p class="w3-xlarge">GoTamer GoLang Packages</p>
</header>
<div class="w3-container">
<div class="w3-panel w3-card-2">
<div class="w3-row">
<div class="w3-col" style="width:120px"><p><a href="vanity" class="w3-btn w3-black w3-round-large">vanity</a></p></div>
<div class="w3-rest"><p>Generate static html pages for vanity go imports</p></div>
</div>
</div>
<div class="w3-panel w3-card-2">
<div class="w3-row">
<div class="w3-col" style="width:120px"><p><a href="hdkeys" class="w3-btn w3-black w3-round-large">hdkeys</a></p></div>
<div class="w3-rest"><p>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>
</div>
<div class="w3-panel w3-card-2">
<div class="w3-row">
<div class="w3-col" style="width:120px"><p><a href="ntpc" class="w3-btn w3-black w3-round-large">ntpc</a></p></div>
<div class="w3-rest"><p>Implementation of an NTP client in Go</p></div>
</div>
</div>
<div class="w3-panel w3-card-2">
<div class="w3-row">
<div class="w3-col" style="width:120px"><p><a href="citadel" class="w3-btn w3-black w3-round-large">citadel</a></p></div>
<div class="w3-rest"><p>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>
</div>
<div class="w3-panel w3-card-2">
<div class="w3-row">
<div class="w3-col" style="width:120px"><p><a href="lib" class="w3-btn w3-black w3-round-large">lib</a></p></div>
<div class="w3-rest"><p>Useful go library packages</p></div>
</div>
</div>
</div>
<footer class="w3-container w3-center w3-padding-64">
<p>
<a href="http://tamer.pw">
<img src="/img/contact.png" height="60" alt="Contact">
</a>
<a href="https://iris.to/npub12jjczvd2mzstyhr468fyas7vzmsm5d2x3tv5l9tev6q0jakk9djqx4uk7x">
<img src="/img/nostr.png" height="60" alt="Nostr">
</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>