51 lines
2.2 KiB
PHP
51 lines
2.2 KiB
PHP
<?php
|
|
// Dynamic hero section showcasing PHP capabilities
|
|
$prefix = $langPrefix ?? '';
|
|
$features = [
|
|
['icon' => '📁', 'title' => 'File-Based', 'description' => 'Folders become URLs automatically', 'url' => $prefix . '/examples/file-based-routing/'],
|
|
['icon' => '⚡', 'title' => 'No Build Step', 'description' => 'Edit and refresh—that\'s it', 'url' => $prefix . '/examples/no-build-step/'],
|
|
['icon' => '🎨', 'title' => 'Mix Formats', 'description' => 'Combine .md, .html, and .php', 'url' => $prefix . '/examples/mix-formats/'],
|
|
['icon' => '🌍', 'title' => 'Multilingual', 'description' => 'Built-in i18n support', 'url' => $prefix . '/multilingual/'],
|
|
['icon' => '📝', 'title' => 'Markdown', 'description' => 'Write content in markdown', 'url' => $prefix . '/examples/2024-12-15-markdown-demo/'],
|
|
['icon' => '🎭', 'title' => 'Templates', 'description' => 'Custom layouts and styles', 'url' => $prefix . '/examples/templates-demo/'],
|
|
];
|
|
|
|
$stats = [
|
|
'files' => count(glob(__DIR__ . '/**/*', GLOB_BRACE)) ?: 0,
|
|
'generated' => number_format((microtime(true) - $_SERVER['REQUEST_TIME_FLOAT']) * 1000, 2) . 'ms',
|
|
'php_version' => PHP_VERSION,
|
|
];
|
|
?>
|
|
|
|
<section class="hero">
|
|
<h1 class="hero-title">FolderWeb</h1>
|
|
<p class="hero-subtitle">
|
|
Drop files in folders. They render immediately.
|
|
No configuration, no build step, no complexity.
|
|
</p>
|
|
|
|
<div class="features">
|
|
<?php foreach ($features as $feature): ?>
|
|
<a href="<?= htmlspecialchars($feature['url']) ?>" class="feature-card">
|
|
<span class="feature-icon"><?= $feature['icon'] ?></span>
|
|
<h3 class="feature-title"><?= htmlspecialchars($feature['title']) ?></h3>
|
|
<p class="feature-description"><?= htmlspecialchars($feature['description']) ?></p>
|
|
</a>
|
|
<?php endforeach; ?>
|
|
</div>
|
|
|
|
<div class="stats">
|
|
<div class="stat">
|
|
<span class="stat-value"><?= $stats['files'] ?></span>
|
|
<span class="stat-label">Files in content</span>
|
|
</div>
|
|
<div class="stat">
|
|
<span class="stat-value"><?= $stats['generated'] ?></span>
|
|
<span class="stat-label">Page generated</span>
|
|
</div>
|
|
<div class="stat">
|
|
<span class="stat-value">PHP <?= $stats['php_version'] ?></span>
|
|
<span class="stat-label">Runtime</span>
|
|
</div>
|
|
</div>
|
|
</section>
|