Skip to content

Commit b4b8fb9

Browse files
committed
feat: implement structural hexagon reveal and tailwind v4 upgrade
1 parent 0bf2d50 commit b4b8fb9

3,856 files changed

Lines changed: 622152 additions & 31 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6+
7+
## [0.1.0] - 2026-04-11
8+
9+
### Added
10+
- **Aesthetic Engine**: Initial implementation of the "Stone and Graphite" theme logic.
11+
- **Tailwind v4 Integration**: Migration to Tailwind v4 CSS pipeline.
12+
- **Structural Reveal**: Hardware-accelerated hexagonal View Transition for theme switching.
13+
- **Antora Supplemental UI**: Partial overrides for header, head, and footer scripts to support the architectural theme.
14+
15+
---
16+
17+
### Timeline & Documentation
18+
19+
Detailed records of major architectural changes can be found in the [changelog-details/](changelog-details/) directory.
20+
21+
- [2026-04-11 - Stone and Graphite Structural Reveal](changelog-details/2026-04-11%20-%20stone-and-graphite-reveal.md)

build/site/404.html

Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta name="viewport" content="width=device-width,initial-scale=1">
6+
<title>Page Not Found :: Demo and Docs :: architexture-theme-antora</title>
7+
<meta name="generator" content="Antora 3.1.14">
8+
<link rel="stylesheet" href="/architexture-theme-antora/_/css/site.css">
9+
<script>
10+
(function() {
11+
const applyTheme = (theme) => {
12+
if (theme === 'dark') document.documentElement.classList.add('dark');
13+
else document.documentElement.classList.remove('dark');
14+
document.documentElement.style.colorScheme = theme;
15+
};
16+
const saved = typeof localStorage !== 'undefined' ? localStorage.getItem('theme') : null;
17+
const theme = saved || (window.matchMedia('(prefers-color-scheme: dark)').matches ? 'dark' : 'light');
18+
applyTheme(theme);
19+
})();
20+
</script>
21+
</head>
22+
<body class="status-404">
23+
<header class="header">
24+
<nav class="navbar">
25+
<div class="navbar-brand">
26+
<a class="navbar-item" href="https://antora-supplemental.github.io/architexture-theme-antora">Demo and Docs :: architexture-theme-antora</a>
27+
<button class="navbar-burger" data-target="topbar-nav">
28+
<span></span>
29+
<span></span>
30+
<span></span>
31+
</button>
32+
</div>
33+
<div id="topbar-nav" class="navbar-menu">
34+
<div class="navbar-end">
35+
<a class="navbar-item" href="https://antora-supplemental.github.io/architexture-theme-antora">Home</a>
36+
<div class="navbar-item">
37+
<div id="theme-toggle" class="cursor-pointer hover:opacity-70 transition-opacity flex items-center h-full px-3">
38+
<span class="text-[10px] font-mono uppercase tracking-widest text-stone-400 dark:text-stone-500 select-none">Toggle System</span>
39+
</div>
40+
</div>
41+
</div>
42+
</div>
43+
</nav>
44+
</header>
45+
<div class="body">
46+
<div class="nav-container">
47+
<aside class="nav">
48+
<div class="panels">
49+
<div class="nav-panel-explore is-active" data-panel="explore">
50+
<ul class="components">
51+
<li class="component">
52+
<div class="title"><a href="/architexture-theme-antora/architexture-theme-antora/0.1/guide/index.html">Demo and Docs :: `architexture-theme-antora`</a></div>
53+
<ul class="versions">
54+
<li class="version is-latest">
55+
<a href="/architexture-theme-antora/architexture-theme-antora/0.1/guide/index.html">0.1</a>
56+
</li>
57+
</ul>
58+
</li>
59+
</ul>
60+
</div>
61+
</div>
62+
</aside>
63+
</div>
64+
<main class="article">
65+
<div class="toolbar" role="navigation">
66+
<button class="nav-toggle"></button>
67+
<a href="/architexture-theme-antora/architexture-theme-antora/0.1/guide/index.html" class="home-link"></a>
68+
<nav class="breadcrumbs" aria-label="breadcrumbs">
69+
</nav>
70+
</div>
71+
<div class="content">
72+
<article class="doc">
73+
<h1 class="page">Page Not Found</h1>
74+
<div class="paragraph">
75+
<p>The page you&#8217;re looking for does not exist. It may have been moved. You can return to the <a href="/architexture-theme-antora/architexture-theme-antora/0.1/guide/index.html">start page</a>, or follow one of the links in the navigation to the left.</p>
76+
</div>
77+
<div class="paragraph">
78+
<p>If you arrived on this page by clicking on a link, please notify the owner of the site that the link is broken.
79+
If you typed the URL of this page manually, please double check that you entered the address correctly.</p>
80+
</div>
81+
</article>
82+
</div>
83+
</main>
84+
</div>
85+
<footer class="footer">
86+
<p>This page was built using the Antora default UI.</p>
87+
<p>The source code for this UI is licensed under the terms of the MPL-2.0 license.</p>
88+
</footer>
89+
<script src="/architexture-theme-antora/_/js/theme-toggle.js"></script>
90+
</body>
91+
</html>

0 commit comments

Comments
 (0)