blob: a740c34faaacd88a5786985d10dbd5fd15a6913d (
plain)
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>namehack.club</title>
<meta name="description" content="An exclusive club of nerds">
<meta name="keywords" content="domain, name, hack, club, exclusive">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="all">
<link rel="canonical" href="https://namehack.club/">
<link href="tachyons.min.css" rel="stylesheet">
<link href="base.css" rel="stylesheet">
</head>
<body>
{% for name in names %}
<a href="{{ name.domain }}">{{name.name}} - {{name.domain}}</a>
{% endfor %}
</body>
</html>
|