diff options
| author | Yuval Adam <_@yuv.al> | 2022-10-23 13:54:00 +0300 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2022-10-23 13:54:00 +0300 |
| commit | 9d14b0297eb7e0d8e40ba482acb632dc1a61517a (patch) | |
| tree | dae2ca435ea477f28763353f607ab368ab6fac8f /templates | |
| parent | c0286a378d5a33dd0d8f475f304421e081a3904f (diff) | |
Add basic build structure and files
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/index.html | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..cde0a53 --- /dev/null +++ b/templates/index.html @@ -0,0 +1,30 @@ +<!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 %} + <p> + <div>{{name.domain}}</div> + <div>{{name.name}}</div> + <div>{{name.email}}</div> + </p> + {% endfor %} + </body> +</html> |
