summaryrefslogtreecommitdiff
path: root/templates/index.html
blob: 2f65c1be05e8db65e802c59d754d0c30045044bb (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
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
<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="utf-8">

  <title>Domain Name Hack Club</title>

  <meta name="description" content="An exclusive club of nerds that own the domain hack to their name">
  <meta name="keywords" content="domain, name, hack, club, exclusive, personal, homepage">

  <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">
  <script src="https://cdn.usefathom.com/script.js" data-site="SSTGQKAU" defer></script>
</head>

<body class="mw7-ns ph3 center sans-serif">
  <h1 class="mt5-ns f1 center code">Doma<span class="silver">.</span>in Na<span class="silver">.</span>me
    Ha<span class="silver">.</span>ck Cl<span class="silver">.</span>ub</h1>
  <p class="lh-copy f4">An exclusive club of geeks that serve their personal homepage from the <a
      href="https://en.wikipedia.org/wiki/Domain_hack" class="link dim dark-pink">domain hack</a> to their name. Are you
    one of us? Join the club by opening a pull
    request on <a href="https://github.com/yuvadm/namehack.club" class="link dim dark-pink">Github</a> or send us an
    email at <a href="mailto:join@namehack.club" class="link dim dark-pink">join@namehack.club</a>.</p>

  <h2 class="pt4">💎 Members</h2>
  <ul class="list pl0">
    {% for name in names %}
    <li class="mb3">
      <div class="f3">{{ name|render_link("link dim blue underline-hover")|safe }}</div>
      <div class="gray serif mt1">{{ name.title }}</div>
    </li>
    {% endfor %}
  </ul>

  <h2 class="pt4">⭐ Candidates</h2>
  <ul class="pl0 flex flex-wrap justify-between">
    {% for name in candidates %}
    <li class="mb3 dib pr3-ns pr1">
      <span class="f4-ns f5">{{ name|render_link("link dim blue underline-hover")|safe }}</span>
    </li>
    {% endfor %}
  </ul>

  <hr class="mt4 white-20">
  <footer class="tr lh-copy mb4">
    Created by <a href="https://yuv.al" class="link dim green">Yuval Adam</a>. Maintained collaboratively on <a
      href="https://github.com/yuvadm/namehack.club" class="link dim green">Github</a>.
  </footer>
</body>

</html>