feat: exposer le radar business à la racine
This commit is contained in:
@@ -15,7 +15,7 @@
|
||||
|
||||
function handleStrategyRoute() {
|
||||
// Vérifier si on est sur la route stratégie
|
||||
if (window.location.pathname === '/business/strategie' || window.location.pathname === '/business/strategie.html') {
|
||||
if (window.location.pathname === '/strategie' || window.location.pathname === '/strategie.html') {
|
||||
createStrategyPage();
|
||||
}
|
||||
}
|
||||
@@ -72,7 +72,7 @@
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<a href="/business/" class="back-link">← Retour au Radar</a>
|
||||
<a href="/" class="back-link">← Retour au Radar</a>
|
||||
<h1>Stratégie d'Évolution Technique - Laplank</h1>
|
||||
<p><strong>Date de mise à jour</strong> : 02/12/2025</p>
|
||||
<p>Cette page est en cours de chargement...</p>
|
||||
@@ -90,7 +90,7 @@
|
||||
const container = document.querySelector('.container');
|
||||
if (container) {
|
||||
container.innerHTML = `
|
||||
<a href="/business/" class="back-link">← Retour au Radar</a>
|
||||
<a href="/" class="back-link">← Retour au Radar</a>
|
||||
<h1>Stratégie d'Évolution Technique - Laplank</h1>
|
||||
<p><strong>Date de mise à jour</strong> : 02/12/2025</p>
|
||||
<p>La stratégie complète est disponible dans le dépôt Git :</p>
|
||||
@@ -107,7 +107,7 @@
|
||||
if (footer) {
|
||||
// Créer le lien vers la stratégie
|
||||
const strategyLink = document.createElement('a');
|
||||
strategyLink.href = '/business/strategie';
|
||||
strategyLink.href = '/strategie';
|
||||
strategyLink.textContent = '📋 Voir la Stratégie';
|
||||
strategyLink.style.marginLeft = '10px';
|
||||
strategyLink.style.color = '#2ecc71';
|
||||
@@ -129,7 +129,7 @@
|
||||
|
||||
if (header) {
|
||||
const strategyLink = document.createElement('a');
|
||||
strategyLink.href = '/business/strategie';
|
||||
strategyLink.href = '/strategie';
|
||||
strategyLink.textContent = 'Stratégie';
|
||||
strategyLink.style.marginLeft = '15px';
|
||||
strategyLink.style.color = '#2ecc71';
|
||||
|
||||
Reference in New Issue
Block a user