![]() Server : Apache/2 System : Linux server-15-235-50-60 5.15.0-164-generic #174-Ubuntu SMP Fri Nov 14 20:25:16 UTC 2025 x86_64 User : gositeme ( 1004) PHP Version : 8.2.29 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname Directory : /home/gositeme/.cursor-server/data/User/History/21d84519/ |
<?php
/**
* The Commons - Social Connection & Dialogue
*/
require_once dirname(__DIR__) . '/private_html/config.php';
$lang = $_GET['lang'] ?? (isset($_COOKIE['lang']) ? $_COOKIE['lang'] : 'en');
if (!in_array($lang, ['en', 'fr'])) $lang = 'en';
setcookie('lang', $lang, time() + (86400 * 365), '/');
$translations = [
'en' => [
'title' => 'The Commons',
'subtitle' => 'Social Connection & Dialogue',
'description' => 'A bilingual network of feeds, events, and stories',
],
'fr' => [
'title' => 'Les Communs',
'subtitle' => 'Connexion Sociale & Dialogue',
'description' => 'Un réseau bilingue de fils d\'actualité, d\'événements et d\'histoires',
]
];
$t = $translations[$lang];
?>
<!DOCTYPE html>
<html lang="<?= $lang ?>">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><?= htmlspecialchars($t['title']) ?> - Free Village Network</title>
<link rel="stylesheet" href="/assets/css/main.css">
</head>
<body>
<nav class="navbar">
<div class="container">
<div class="nav-brand">
<a href="/">🌐 Free Village Network</a>
</div>
<div class="nav-links">
<a href="/commons" class="active"><?= htmlspecialchars($t['title']) ?></a>
<a href="/ledger">The Ledger</a>
<a href="/land">The Land</a>
<a href="/">Home</a>
</div>
</div>
</nav>
<section class="hero" style="min-height: 60vh; padding-top: 100px;">
<div class="container">
<div class="hero-content">
<h1 class="hero-title"><?= htmlspecialchars($t['title']) ?></h1>
<p class="hero-subtitle"><?= htmlspecialchars($t['subtitle']) ?></p>
<p class="hero-tagline"><?= htmlspecialchars($t['description']) ?></p>
</div>
</div>
</section>
<section class="activity">
<div class="container">
<p style="text-align: center; color: var(--color-text-secondary); padding: 4rem 0;">
The Commons interface is coming soon. This will be the social feed where members share posts, stories, and events.
</p>
</div>
</section>
<footer class="footer">
<div class="container">
<p style="text-align: center; color: var(--color-text-secondary);">© <?= date('Y') ?> The Free Village Network</p>
</div>
</footer>
</body>
</html>