Replace v1 with v2 codebase

Full rewrite: swap out the v1 framework (src/, controllers/, views/,
twig/, sass/, skeleton/) for the working v2 codebase from phpproject
(App/, novaconium/, public/).
This commit is contained in:
code
2026-07-14 01:58:25 +00:00
parent d9c4b64d9c
commit fbd4e92e9f
460 changed files with 30107 additions and 4661 deletions
+17
View File
@@ -0,0 +1,17 @@
RewriteEngine On
# 1) Canonical URLs: strip trailing slash (except bare root) — 301 for SEO.
RewriteCond %{REQUEST_URI} ^/.+/$
RewriteRule ^(.+)/$ /$1 [R=301,L]
# 2) Serve pre-rendered static cache file directly, bypassing PHP entirely.
RewriteCond %{DOCUMENT_ROOT}/cache/$1/index.html -f
RewriteRule ^(.*)$ /cache/$1/index.html [L]
# 3) Serve real files/directories as-is (css, cache assets, etc.).
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule ^ - [L]
# 4) Everything else goes through the front controller.
RewriteRule ^ index.php [L]
+433
View File
@@ -0,0 +1,433 @@
:root {
--bg: #14181c;
--surface: #1b2126;
--text-color: #e7ebee;
--muted-color: #98a3ac;
--border-color: #2a3238;
--accent: #2dd4bf;
--accent-hover: #5eead4;
}
:root[data-theme=light] {
--bg: #ffffff;
--surface: #f1f4f6;
--text-color: #14181c;
--muted-color: #5b6570;
--border-color: #d8dee3;
--accent: #0f9488;
--accent-hover: #0c7a70;
}
body {
font-family: -apple-system, sans-serif;
background: var(--bg);
color: var(--text-color);
max-width: 40rem;
margin: 2rem auto;
padding: 0 1rem;
line-height: 1.6;
}
a {
color: var(--accent);
text-decoration: none;
}
a:hover {
color: var(--accent-hover);
text-decoration: underline;
}
h1, h2, h3, h4, h5, h6 {
color: var(--text-color);
line-height: 1.3;
}
blockquote {
margin: 1.5rem 0;
padding: 0.25rem 0 0.25rem 1rem;
border-left: 3px solid var(--accent);
color: var(--muted-color);
font-style: italic;
}
table {
width: 100%;
margin: 1.5rem 0;
border-collapse: collapse;
}
th, td {
padding: 0.5rem 0.75rem;
border: 1px solid var(--border-color);
text-align: left;
}
th {
color: var(--text-color);
font-weight: 600;
}
img {
max-width: 100%;
height: auto;
border-radius: 6px;
}
.icon {
flex-shrink: 0;
}
.icon-link {
display: inline-flex;
align-items: center;
gap: 0.35rem;
}
.icon-heading {
display: inline-flex;
align-items: center;
gap: 0.5rem;
}
nav {
margin-bottom: 2rem;
padding-bottom: 1rem;
border-bottom: 1px solid var(--border-color);
}
nav a {
display: inline-flex;
align-items: center;
gap: 0.35rem;
margin-right: 1rem;
font-weight: 600;
}
.theme-toggle {
background: none;
border: none;
color: inherit;
font-weight: normal;
padding: 0;
cursor: pointer;
}
.theme-toggle:hover {
background: none;
}
.theme-toggle .icon-moon {
display: none;
}
:root[data-theme=light] .theme-toggle .icon-sun {
display: none;
}
:root[data-theme=light] .theme-toggle .icon-moon {
display: inline;
}
code {
background: var(--surface);
color: var(--accent);
padding: 0.15em 0.4em;
border-radius: 4px;
font-size: 0.9em;
}
pre {
background: var(--surface);
border: 1px solid var(--border-color);
border-radius: 6px;
padding: 1rem;
overflow-x: auto;
}
pre code {
background: none;
padding: 0;
color: var(--text-color);
}
hr {
border: none;
border-top: 1px solid var(--border-color);
margin: 2rem 0;
}
ul, ol {
padding-left: 1.25rem;
}
label {
color: var(--muted-color);
}
small {
color: var(--muted-color);
}
.hp-field {
position: absolute;
left: -9999px;
width: 1px;
height: 1px;
overflow: hidden;
}
button, select, textarea, input:not([type=radio]):not([type=checkbox]) {
font-family: inherit;
font-size: 1rem;
background: var(--surface);
color: var(--text-color);
border: 1px solid var(--border-color);
border-radius: 6px;
padding: 0.5rem 0.75rem;
}
select {
cursor: pointer;
}
input[type=radio], input[type=checkbox] {
accent-color: var(--accent);
margin-right: 0.35rem;
vertical-align: middle;
}
button {
background: var(--accent);
color: var(--bg);
border: none;
font-weight: 600;
cursor: pointer;
}
button:hover {
background: var(--accent-hover);
}
.blog-layout {
display: flex;
gap: 2rem;
}
.blog-layout aside {
color: var(--muted-color);
flex: 0 0 8rem;
}
.blog-layout article {
flex: 1;
}
@keyframes fade-in-up {
from {
opacity: 0;
transform: translateY(0.75rem);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes glow-drift {
0% {
transform: translate(-50%, -50%) rotate(0deg);
}
100% {
transform: translate(-50%, -50%) rotate(360deg);
}
}
.hero {
position: relative;
padding: 3rem 0 2.5rem;
text-align: center;
overflow: hidden;
}
.hero::before {
content: "";
position: absolute;
top: 50%;
left: 50%;
width: 40rem;
height: 40rem;
background: conic-gradient(from 0deg, transparent 0deg, rgba(45, 212, 191, 0.16) 90deg, transparent 180deg);
animation: glow-drift 18s linear infinite;
pointer-events: none;
z-index: 0;
}
.hero > * {
position: relative;
z-index: 1;
animation: fade-in-up 0.6s ease-out both;
}
.hero h1 {
font-size: 2.5rem;
margin: 0.5rem 0 1rem;
animation-delay: 0.08s;
}
.hero .hero-lede {
animation-delay: 0.16s;
}
.hero .hero-actions {
animation-delay: 0.24s;
}
.hero .hero-badges {
animation-delay: 0.32s;
}
.hero-eyebrow {
display: inline-block;
color: var(--accent);
font-weight: 700;
letter-spacing: 0.08em;
text-transform: uppercase;
font-size: 0.85rem;
}
.hero-lede {
max-width: 36rem;
margin: 0 auto;
color: var(--muted-color);
font-size: 1.05rem;
}
.hero-actions {
display: flex;
justify-content: center;
gap: 1rem;
margin-top: 1.75rem;
}
.button-link {
display: inline-flex;
align-items: center;
gap: 0.4rem;
background: var(--accent);
color: var(--bg);
font-weight: 600;
border-radius: 6px;
padding: 0.65rem 1.25rem;
text-decoration: none;
}
.button-link:hover {
background: var(--accent-hover);
color: var(--bg);
text-decoration: none;
}
.button-link.button-link--ghost {
background: transparent;
color: var(--text-color);
border: 1px solid var(--border-color);
}
.button-link.button-link--ghost:hover {
background: var(--surface);
color: var(--text-color);
}
.hero-badges {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 0.5rem;
margin: 1.5rem 0 0;
padding: 0;
list-style: none;
}
.badge {
background: var(--surface);
border: 1px solid var(--border-color);
color: var(--muted-color);
border-radius: 999px;
padding: 0.3rem 0.85rem;
font-size: 0.8rem;
font-weight: 600;
}
.feature-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
gap: 1.25rem;
margin: 2.5rem 0;
}
.feature-card {
background: var(--surface);
border: 1px solid var(--border-color);
border-radius: 8px;
padding: 1.25rem 1.5rem;
opacity: 0;
animation: fade-in-up 0.5s ease-out forwards;
}
.feature-card:nth-child(1) {
animation-delay: 0.36s;
}
.feature-card:nth-child(2) {
animation-delay: 0.42s;
}
.feature-card:nth-child(3) {
animation-delay: 0.48s;
}
.feature-card:nth-child(4) {
animation-delay: 0.54s;
}
.feature-card:nth-child(5) {
animation-delay: 0.6s;
}
.feature-card:nth-child(6) {
animation-delay: 0.66s;
}
.feature-card h2 {
font-size: 1.1rem;
margin: 0 0 0.5rem;
}
.feature-card p {
color: var(--muted-color);
margin: 0;
font-size: 0.95rem;
}
@media (prefers-reduced-motion: reduce) {
.hero::before {
animation: none;
}
.hero > *, .feature-card {
animation: none;
opacity: 1;
transform: none;
}
}
.next-steps {
border-top: 1px solid var(--border-color);
padding-top: 2rem;
margin-top: 1rem;
}
.next-steps ul {
padding-left: 1.25rem;
}
.post-list {
list-style: none;
padding: 0;
}
.post-list li {
padding: 1rem 0;
border-bottom: 1px solid var(--border-color);
}
.post-list li:last-child {
border-bottom: none;
}
.post-list h2 {
margin: 0 0 0.35rem;
font-size: 1.15rem;
}
.post-list p {
color: var(--muted-color);
margin: 0;
}
.footnotes {
border-top: 1px solid var(--border-color);
margin-top: 2.5rem;
padding-top: 1rem;
font-size: 0.9rem;
color: var(--muted-color);
}
.footnotes ol {
padding-left: 1.25rem;
}
+3
View File
@@ -0,0 +1,3 @@
<?php
require __DIR__ . '/../novaconium/bootstrap.php';
+23
View File
@@ -0,0 +1,23 @@
<?php
// Dev-only router for `php -S`, mimicking the .htaccess rules for local testing.
// Not used in production (Apache reads .htaccess directly).
$uri = urldecode(parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH));
if ($uri !== '/' && str_ends_with($uri, '/')) {
header('Location: ' . rtrim($uri, '/'), true, 301);
exit;
}
$file = __DIR__ . $uri;
if ($uri !== '/' && (is_file($file) || is_dir($file))) {
return false; // let the built-in server handle real files/dirs (css, cache)
}
$cacheFile = __DIR__ . '/cache' . $uri . '/index.html';
if (is_file($cacheFile)) {
readfile($cacheFile);
return true;
}
require __DIR__ . '/index.php';