-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnews.html
More file actions
87 lines (82 loc) · 4.09 KB
/
Copy pathnews.html
File metadata and controls
87 lines (82 loc) · 4.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script>
(function () {
try {
if (window.localStorage.getItem('piewbond-locale') === 'hu') {
document.documentElement.classList.add('locale-en-loading-nav');
}
} catch (error) {
// ignore
}
})();
</script>
<title>Black Cat Glass – Games</title>
<link href="https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Josefin+Sans:wght@300;600&family=Merriweather:ital@1&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/style.css">
</head>
<body data-page="news">
<noscript class="noscript-banner" data-i18n="common.noscript">This site uses a small JavaScript layer for language switching and project cards.</noscript>
<header class="site-header">
<div class="logo" aria-label="Black Cat Glass">Black Cat Glass</div>
<button class="nav-toggle" type="button" aria-label="Open menu" aria-expanded="false" aria-controls="main-navigation">☰</button>
<nav id="main-navigation" class="main-nav" aria-label="Main navigation">
<a class="nav-link" href="/home/" data-i18n="nav.home">Home</a>
<a class="nav-link" href="/about/" data-i18n="nav.about">Studio</a>
<a class="nav-link" href="/news/" data-i18n="nav.news">Games</a>
<a class="nav-link" href="/contact/" data-i18n="nav.contact">Contact</a>
</nav>
<button class="nav-backdrop" type="button" aria-label="Close menu"></button>
<div class="lang-switch" role="group" aria-label="Language switch">
<button class="lang-btn" data-lang="hu">HU</button>
<button class="lang-btn" data-lang="en">EN</button>
</div>
</header>
<main class="page">
<section class="hero">
<p class="eyebrow" data-i18n="news.hero.eyebrow">Games</p>
<h1 data-i18n="news.hero.title">Games and prototypes</h1>
<p class="page-lead" data-i18n="news.hero.lead">Kiddo is the current focus. cyberpunk-shootout stays here as a public prototype from the studio orbit.</p>
</section>
<section class="section">
<div class="section-heading">
<h2 data-i18n="news.feed.heading">Open first</h2>
<p data-i18n="news.feed.subheading">Public project links. Store pages, demos, and wishlists can be added when they exist.</p>
</div>
<ul class="news-list" data-news-feed>
<li class="news-card">
<div class="news-meta">
<span class="news-date">Current project</span>
<span class="badge">Roguelike</span>
</div>
<h3>Kiddo</h3>
</li>
<li class="news-card">
<div class="news-meta">
<span class="news-date">Public prototype</span>
<span class="badge">Prototype</span>
</div>
<h3>cyberpunk-shootout</h3>
</li>
</ul>
</section>
<section class="section">
<div class="section-heading">
<h2 data-i18n="news.next.heading">Coming later</h2>
<p data-i18n="news.next.subheading">Public store and press links are not published yet.</p>
</div>
<div class="note-grid">
<p data-i18n="news.next.body1">Good next additions: Kiddo screenshots, a gameplay trailer, demo links, wishlist links, and a short press kit.</p>
<p data-i18n="news.next.body2">Until then, the public repositories remain the source of truth.</p>
</div>
</section>
</main>
<footer class="site-footer">
<p>© <span data-current-year>2026</span> Black Cat Glass · <span data-i18n="common.rights">All rights reserved.</span></p>
</footer>
<script type="module" defer src="/scripts/main.js"></script>
</body>
</html>