summaryrefslogtreecommitdiff
path: root/templates/index.html
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2022-11-26 09:51:17 +0200
committerGitHub <noreply@github.com>2022-11-26 09:51:17 +0200
commit7387c7cb3ef89c0227b53a19a8057c35e6aec6e9 (patch)
tree7f2cf28cf070aab45266b9950dd7e9b64eb61666 /templates/index.html
parent6d40823ded0bed7c32ebd9747d261f03b09b6893 (diff)
parent76583e5aca961cc68eb6d3f8438b1a7d113b1c14 (diff)
Merge pull request #57 from yuvadm/candidates
Add mass of candidates
Diffstat (limited to 'templates/index.html')
-rw-r--r--templates/index.html27
1 files changed, 20 insertions, 7 deletions
diff --git a/templates/index.html b/templates/index.html
index aa366de..007da8a 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -20,21 +20,34 @@
<script src="https://skilled-twentyeight.namehack.club/script.js" data-site="SSTGQKAU" defer></script>
</head>
-<body class="mw7-ns ph3 center sans-serif">
- <h1 class="mt5-ns f1 center code shadow">Doma<span class="silver">.</span>in Na<span class="silver">.</span>me
+<body class="mw7-ns ph3 center sans-serif bg-near-white">
+ <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">An exclusive club of nerds that own the <a href="https://en.wikipedia.org/wiki/Domain_hack"
+ <p class="lh-copy f4">An exclusive club of geeks that own the <a href="https://en.wikipedia.org/wiki/Domain_hack"
class="link dim dark-pink">domain hack</a> to their name, and serve their personal homepage from it. Are you one
- of us? <a href="https://github.com/yuvadm/namehack.club" class="link dim dark-pink">Join the club.</a></p>
+ 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>
- <ul class="list pl0 pv4">
+ <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")|safe }}</div>
- <div class="light-silver serif mt1">{{ name.title }}</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")|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
@@ -42,4 +55,4 @@
</footer>
</body>
-</html>
+</html> \ No newline at end of file