-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkindred-code.html
More file actions
118 lines (99 loc) · 3.42 KB
/
Copy pathkindred-code.html
File metadata and controls
118 lines (99 loc) · 3.42 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Kindred Code 💻⚙️</title>
<meta name="description" content="Welcome to kindredcode.dev. A clean, fast, and accessible starter template." />
<meta name="robots" content="index,follow" />
<meta name="color-scheme" content="light dark" />
<meta name="theme-color" content="#c08457" />
<!-- Canonical URL -->
<link rel="canonical" href="https://kindredcode.dev/" />
<!-- Favicons / PWA -->
<link rel="icon" type="image/svg+xml" href='data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"%3E%3Crect rx="12" width="64" height="64" fill="%23c08457"/%3E%3Ctext x="50%25" y="57%25" text-anchor="middle" font-size="42" font-family="system-ui,Segoe UI,Arial" fill="white"%3EK%3C/text%3E%3C/svg%3E' />
<link rel="apple-touch-icon" href="/apple-touch-icon.png" />
<link rel="manifest" href="/site.webmanifest" />
<!-- Open Graph / Twitter -->
<meta property="og:title" content="kindredcode.dev — Modern HTML Boilerplate" />
<meta property="og:description" content="A clean, fast, and accessible starter template for kindredcode.dev." />
<meta property="og:url" content="https://kindredcode.dev/" />
<meta property="og:type" content="website" />
<meta property="og:image" content="https://kindredcode.dev/og-linkedin.png" />
<!-- Base styles -->
--card: #ffffff;
}
}
</style>
<body>
<main>
<section id="features">
<div class="cards">
<article class="card">
<h3>Accessible by default</h3>
<p>Keyboard focus styles, skip link, semantic landmarks, and proper contrast.</p>
</article>
<article class="card">
<h3>SEO friendly</h3>
<p>Canonical URL, Open Graph, Twitter card, and JSON-LD structured data.</p>
</article>
<article class="card">
<h3>Fast & responsive</h3>
<p>Lightweight CSS, responsive layout, and image preloading hooks.</p>
</article>
<article class="card">
<h3>PWA ready</h3>
<p>Manifest, icons, and theme color — just add your assets.</p>
</article>
</div>
</section>
<section id="about">
<div class="container">
<div class="card">
<h2>About kindredcode.dev</h2>
<p>Swap in your brand copy here. Keep it short and clear — who you help, what you do, and why it matters.</p>
</div>
</div>
</section>
<section id="contact">
<div class="container">
<div class="card">
<h2>Contact</h2>
<p>Email us at <a href="mailto:hello@kindredcode.dev">hello@kindredcode.dev</a></p>
</div>
</div>
</section>
<h3>PWA ready</h3>
<p>Manifest, icons, and theme color — just add your assets.</p>
</article>
</div>
</div>
</section>
<section id="about">
<div class="container">
<div class="card">
<h2>About kindredcode.dev</h2>
<p>Swap in your brand copy here. Keep it short and clear — who you help, what you do, and why it matters.</p>
</div>
</div>
</section>
<section id="contact">
<div class="container">
<div class="card">
<h2>Contact</h2>
<p>Email us at <a href="mailto:hello@kindredcode.dev">hello@kindredcode.dev</a></p>
</div>
</div>
</section>
</main>
<footer>
<div class="footer-inner container">
<small>© <span id="year"></span> kindredcode.dev. All rights reserved.</small>
<a href="/privacy">Privacy</a>
</div>
</footer>
<script>
document.getElementById('year').textContent = new Date().getFullYear();
</script>
</body>
</html>