-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.njk
More file actions
64 lines (58 loc) · 2.34 KB
/
index.njk
File metadata and controls
64 lines (58 loc) · 2.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>tinytown.studio</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/main.css">
<body>
</body>
</html>
</head>
<body>
<div class="container">
<header>
<span class="micro-label"><small>tinytown.studio</small></span>
<span class="dot" aria-hidden="true"></span>
</header>
<main>
<section aria-label="Hero">
<span class="micro-label"><small>WE ARE</small></span>
<h1>Minimal Software Craftsmen.</h1>
<p>Building hyperfocused software for everyone</p>
</section>
<section id="about" aria-label="About">
<span class="micro-label"><small>About</small></span>
<article>
{% set snippet %}{% include './partials/about.md' %}{% endset %}
{{ snippet | markdown | safe }}
</article>
</section>
<section id="products" aria-label="Products">
<span class="micro-label"><small>Products</small></span>
<div class="products-grid">
<article class="product-card">
<div class="product-header">
<span class="dot" aria-hidden="true"></span>
<h2 class="tag-container">Toggles <span class="beta-tag">Beta</span></h2>
</div>
<p>Just feature flags, nothing else</p>
<a href="https://toggles.tinytown.studio" class="external-link" target="_blank" rel="noopener" aria-label="Visit toggles feature flags service (opens in new tab)">Visit Toggles →</a>
</article>
<article class="product-card">
<div class="product-header">
<span class="dot" aria-hidden="true"></span>
<h2>Ping</h2>
</div>
<p>Simple, light, and non-intrusive uptime monitor service.</p>
<a href="https://ping.tinytown.studio" class="external-link" target="_blank" rel="noopener" aria-label="Visit Ping uptime monitor (opens in new tab)">Visit Ping →</a>
</article>
</div>
</section>
</main>
<footer class="footer">
<span class="micro-label"><small>© 2025 tinytown.studio</small></span>
</footer>
</div>
</body>
</html>