1 Commits

Author SHA1 Message Date
Jules Neny
1dcbe44d12 V1.5-C+BIO header lowercase + footer compact + photo bio 2026-05-13 00:47:41 +02:00
9 changed files with 139 additions and 476 deletions

View File

@@ -1,24 +1,17 @@
# Kit (ex-ConvertKit) - newsletter infolettre # Kit (ex-ConvertKit) - newsletter infolettre
KIT_API_SECRET_V4=kit_xxx KIT_API_SECRET_V4=kit_xxx
# Behold.so : DEPRECATED V1.5-E — remplace par RSSHub self-host (rss.trans-former.fr). # Behold.so feed IDs (voir docs/BEHOLD-SETUP.md)
# InstaFeed.vue consomme desormais PUBLIC_JOURNAL_URL (filtre platform=instagram). # 1) Inscris-toi sur https://behold.so/dashboard
# Les 2 vars ci-dessous ne sont plus lues ; conservees pour compat.env.local existant. # 2) Connecte les 2 comptes Insta (@aep.politique + @julesneny)
# 3) Recupere les feed IDs et copie ce fichier vers .env.local puis remplis ci-dessous
PUBLIC_BEHOLD_AEP= PUBLIC_BEHOLD_AEP=
PUBLIC_BEHOLD_JULESNENY= PUBLIC_BEHOLD_JULESNENY=
# Journal unifie (V1.6) - URL JSON agrege par n8n cron 4h UTC # Journal unifie (PC6) - URL JSON agrege par n8n cron nocturne
# Sources : RSSHub self-host (Insta @aep.politique + @julesneny) + Substack natif
# + Atom Gitea natif (git.trans-former.fr/jules.atom) + LinkedIn API V2
# Override en local : pointer vers un mock /public/data/journal.json par exemple # Override en local : pointer vers un mock /public/data/journal.json par exemple
PUBLIC_JOURNAL_URL=https://data.trans-former.fr/journal.json PUBLIC_JOURNAL_URL=https://data.trans-former.fr/journal.json
# LinkedIn (V1.6) - Member ID du profil Jules (format numerique, sans urn: prefix)
# Recuperer via curl -H "Authorization: Bearer TOKEN" https://api.linkedin.com/v2/me | jq .id
# Stocke comme variable d'env n8n (Settings -> Variables) sous le nom LINKEDIN_MEMBER_ID
# Le workflow l'utilise comme : urn:li:person:${LINKEDIN_MEMBER_ID}
LINKEDIN_MEMBER_ID=
# Chatbot upstream (PC7) - URL backend chatbot AEP # Chatbot upstream (PC7) - URL backend chatbot AEP
# V1 : chatbot AEP classique (Mistral Small + 120 fiches) # V1 : chatbot AEP classique (Mistral Small + 120 fiches)
# V1.5 : switch vers LightRAG-PE (1 ligne) # V1.5 : switch vers LightRAG-PE (1 ligne)

File diff suppressed because one or more lines are too long

View File

@@ -1,6 +1,6 @@
{ {
"version": "1.1", "version": "1.1",
"generatedAt": "2026-05-12T22:53:33.094Z", "generatedAt": "2026-05-12T09:28:20.972Z",
"nodes": [ "nodes": [
{ {
"id": "contrat-social-medecine-corps-social", "id": "contrat-social-medecine-corps-social",

Binary file not shown.

After

Width:  |  Height:  |  Size: 62 KiB

View File

@@ -1,21 +1,23 @@
--- ---
import InstaFeed from '../vue/InstaFeed.vue'; import InstaFeed from '../vue/InstaFeed.vue';
// V1.5-E : Behold remplacé par RSSHub self-host. InstaFeed lit désormais // Feed IDs Behold a remplir apres inscription Behold (voir docs/BEHOLD-SETUP.md)
// le journal unifié (PUBLIC_JOURNAL_URL → data.trans-former.fr/journal.json) const FEED_AEP = import.meta.env.PUBLIC_BEHOLD_AEP || 'PLACEHOLDER_AEP';
// agrégé par n8n depuis rss.trans-former.fr. Plus de feedId Behold à passer. const FEED_JULESNENY = import.meta.env.PUBLIC_BEHOLD_JULESNENY || 'PLACEHOLDER_JULESNENY';
--- ---
<div class="h-full overflow-y-auto"> <div class="h-full overflow-y-auto">
<InstaFeed <InstaFeed
client:visible client:visible
account="aep.politique" feedId={FEED_AEP}
account="@aep.politique"
accountUrl="https://www.instagram.com/aep.politique/" accountUrl="https://www.instagram.com/aep.politique/"
fallbackBio="Carrousels manifeste AEP ; pensee politique eco-architecture" fallbackBio="Carrousels manifeste AEP ; pensee politique eco-architecture"
/> />
<InstaFeed <InstaFeed
client:visible client:visible
account="julesneny" feedId={FEED_JULESNENY}
account="@julesneny"
accountUrl="https://www.instagram.com/julesneny/" accountUrl="https://www.instagram.com/julesneny/"
fallbackBio="Peinture, poesie, Corse ; archives visuelles personnelles" fallbackBio="Peinture, poesie, Corse ; archives visuelles personnelles"
/> />

View File

@@ -1,91 +1,94 @@
--- ---
// Footer.astro - V1.4-F : 1 ligne 3 zones (nav / subscribe / logos RS). // Footer.astro - V1.5-C.4 : footer 2 lignes au lieu de 3.
// Alignement vertical centre + padding-y reduit (py-2) pour profil plus fin. // Ligne 1 (centree, plein cadre) : label Courier 12px #475569 + form subscribe (input + bouton)
// Subscribe input/button compact (py-1) cale sur baseline des autres elements. // Ligne 2 : gauche = nav (Manifeste / A propos / Mentions legales) ; droite = 5 logos RS monochrome #475569.
// Palette V1.3 figee : encre #0F172A, encre douce #475569, papier #FAFAF7
--- ---
<footer class="border-t border-neutral-200 px-6 py-2 bg-[#FAFAF7] text-[#0F172A]"> <footer class="border-t border-neutral-200 px-6 py-3 bg-[#FAFAF7] text-[#0F172A]">
<!-- LIGNE 1 : label + subscribe form, centre plein cadre -->
<div class="flex flex-col items-center gap-1 mb-3">
<p class="footer-label text-[12px] text-[#475569] leading-none">
Reçois le journal AEP — un envoi par mois, sans bullshit
</p>
<form id="subscribe-form" class="flex gap-2 items-center w-full max-w-[320px]">
<input
type="email"
name="email"
required
placeholder="ton@email.fr"
class="flex-1 px-3 py-1 border border-neutral-300 rounded text-xs focus:outline-none focus:border-[#0F172A] bg-white leading-tight"
/>
<button
type="submit"
class="px-3 py-1 bg-[#0F172A] text-white rounded text-xs hover:bg-[#475569] transition-colors whitespace-nowrap leading-tight"
>
s'abonner
</button>
</form>
<p id="subscribe-msg" class="text-[10px] text-neutral-500 min-h-[0.75rem]"></p>
</div>
<!-- LIGNE 2 : nav gauche + logos RS droite -->
<div class="flex flex-col md:flex-row md:items-center md:justify-between gap-2 md:gap-6"> <div class="flex flex-col md:flex-row md:items-center md:justify-between gap-2 md:gap-6">
<!-- ZONE GAUCHE : liens nav --> <!-- ZONE GAUCHE : liens nav -->
<nav class="flex gap-4 text-xs items-center justify-center md:justify-start"> <nav class="flex gap-4 text-xs items-center justify-center md:justify-start text-[#475569]">
<a href="/manifeste" data-manifeste-link class="opacity-60 hover:opacity-100 transition-opacity">Manifeste</a> <a href="/manifeste" data-manifeste-link class="opacity-100 hover:text-[#0F172A] transition-colors">Manifeste</a>
<a href="/a-propos" class="opacity-60 hover:opacity-100 transition-opacity">A propos</a> <a href="/a-propos" class="opacity-100 hover:text-[#0F172A] transition-colors">A propos</a>
<a href="/mentions-legales" class="opacity-60 hover:opacity-100 transition-opacity">Mentions legales</a> <a href="/mentions-legales" class="opacity-100 hover:text-[#0F172A] transition-colors">Mentions legales</a>
</nav> </nav>
<!-- ZONE CENTRE : subscribe form compact (endpoint /api/subscribe V1.1-I). <!-- ZONE DROITE : 5 logos RS monochrome #475569 100% (V1.5-C.4 : pas les couleurs natives) -->
V1.4-F : padding-y reduit (py-1) pour caler input sur la baseline des liens + logos. --> <div class="flex gap-4 md:gap-6 items-center justify-center md:justify-end text-[#475569]">
<div class="flex flex-col items-center gap-0.5"> <!-- Instagram @aep.politique -->
<form id="subscribe-form" class="flex gap-2 items-center">
<input
type="email"
name="email"
required
placeholder="ton@email.fr"
class="px-3 py-1 border border-neutral-300 rounded text-xs focus:outline-none focus:border-[#0F172A] bg-white leading-tight"
/>
<button
type="submit"
class="px-3 py-1 bg-[#0F172A] text-white rounded text-xs hover:bg-[#475569] transition-colors whitespace-nowrap leading-tight"
>
s'abonner
</button>
</form>
<p id="subscribe-msg" class="text-[10px] text-neutral-500 min-h-[0.75rem]"></p>
</div>
<!-- ZONE DROITE : logos RS cliquables (SVG inline, fill #0F172A 60%) -->
<!-- V1.3-F : gap-4 mobile / gap-6 desktop pour espacer les logos. V1.4-F : items-center force baseline. -->
<div class="flex gap-4 md:gap-6 items-center justify-center md:justify-end text-[#0F172A]">
<!-- V1.4-bis FIX 6 : Instagram x2 (AEP politique + Jules perso) avec aria-labels distincts.
V1.4-bis FIX 7 : SVG simplifie (camera carree avec coins arrondis, lentille, point flash) — rendu propre net. -->
<a <a
href="https://www.instagram.com/aep.politique/" href="https://www.instagram.com/aep.politique/"
target="_blank" target="_blank"
rel="noopener noreferrer" rel="noopener noreferrer"
aria-label="Instagram @aep.politique" aria-label="Instagram @aep.politique"
title="@aep.politique" title="@aep.politique"
class="opacity-60 hover:opacity-100 transition-opacity" class="hover:text-[#0F172A] transition-colors"
> >
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" class="w-[18px] h-[18px] md:w-5 md:h-5" fill="currentColor" aria-hidden="true"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" class="w-[18px] h-[18px] md:w-5 md:h-5" fill="currentColor" aria-hidden="true">
<path d="M7.75 2C4.574 2 2 4.574 2 7.75v8.5C2 19.426 4.574 22 7.75 22h8.5C19.426 22 22 19.426 22 16.25v-8.5C22 4.574 19.426 2 16.25 2h-8.5zM4 7.75A3.75 3.75 0 017.75 4h8.5A3.75 3.75 0 0120 7.75v8.5A3.75 3.75 0 0116.25 20h-8.5A3.75 3.75 0 014 16.25v-8.5zM12 7a5 5 0 100 10 5 5 0 000-10zm0 2a3 3 0 110 6 3 3 0 010-6zm5.5-3.5a1 1 0 100 2 1 1 0 000-2z"/> <path d="M7.75 2C4.574 2 2 4.574 2 7.75v8.5C2 19.426 4.574 22 7.75 22h8.5C19.426 22 22 19.426 22 16.25v-8.5C22 4.574 19.426 2 16.25 2h-8.5zM4 7.75A3.75 3.75 0 017.75 4h8.5A3.75 3.75 0 0120 7.75v8.5A3.75 3.75 0 0116.25 20h-8.5A3.75 3.75 0 014 16.25v-8.5zM12 7a5 5 0 100 10 5 5 0 000-10zm0 2a3 3 0 110 6 3 3 0 010-6zm5.5-3.5a1 1 0 100 2 1 1 0 000-2z"/>
</svg> </svg>
</a> </a>
<!-- Instagram @julesneny (compte perso/art) --> <!-- Instagram @julesneny -->
<a <a
href="https://www.instagram.com/julesneny/" href="https://www.instagram.com/julesneny/"
target="_blank" target="_blank"
rel="noopener noreferrer" rel="noopener noreferrer"
aria-label="Instagram @julesneny" aria-label="Instagram @julesneny"
title="@julesneny" title="@julesneny"
class="opacity-60 hover:opacity-100 transition-opacity" class="hover:text-[#0F172A] transition-colors"
> >
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" class="w-[18px] h-[18px] md:w-5 md:h-5" fill="currentColor" aria-hidden="true"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" class="w-[18px] h-[18px] md:w-5 md:h-5" fill="currentColor" aria-hidden="true">
<path d="M7.75 2C4.574 2 2 4.574 2 7.75v8.5C2 19.426 4.574 22 7.75 22h8.5C19.426 22 22 19.426 22 16.25v-8.5C22 4.574 19.426 2 16.25 2h-8.5zM4 7.75A3.75 3.75 0 017.75 4h8.5A3.75 3.75 0 0120 7.75v8.5A3.75 3.75 0 0116.25 20h-8.5A3.75 3.75 0 014 16.25v-8.5zM12 7a5 5 0 100 10 5 5 0 000-10zm0 2a3 3 0 110 6 3 3 0 010-6zm5.5-3.5a1 1 0 100 2 1 1 0 000-2z"/> <path d="M7.75 2C4.574 2 2 4.574 2 7.75v8.5C2 19.426 4.574 22 7.75 22h8.5C19.426 22 22 19.426 22 16.25v-8.5C22 4.574 19.426 2 16.25 2h-8.5zM4 7.75A3.75 3.75 0 017.75 4h8.5A3.75 3.75 0 0120 7.75v8.5A3.75 3.75 0 0116.25 20h-8.5A3.75 3.75 0 014 16.25v-8.5zM12 7a5 5 0 100 10 5 5 0 000-10zm0 2a3 3 0 110 6 3 3 0 010-6zm5.5-3.5a1 1 0 100 2 1 1 0 000-2z"/>
</svg> </svg>
</a> </a>
<!-- GitHub (TODO: si 404 connu, fallback https://git.trans-former.fr/jules Gitea) --> <!-- GitHub / Gitea -->
<a <a
href="https://github.com/julesneny" href="https://github.com/julesneny"
target="_blank" target="_blank"
rel="noopener noreferrer" rel="noopener noreferrer"
aria-label="GitHub" aria-label="GitHub"
class="opacity-60 hover:opacity-100 transition-opacity" class="hover:text-[#0F172A] transition-colors"
> >
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" class="w-[18px] h-[18px] md:w-5 md:h-5" fill="currentColor" aria-hidden="true"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" class="w-[18px] h-[18px] md:w-5 md:h-5" fill="currentColor" aria-hidden="true">
<path d="M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12"/> <path d="M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12"/>
</svg> </svg>
</a> </a>
<!-- LinkedIn TODO: confirmer URL LinkedIn Jules --> <!-- LinkedIn -->
<a <a
href="https://www.linkedin.com/in/jules-neny/" href="https://www.linkedin.com/in/jules-neny/"
target="_blank" target="_blank"
rel="noopener noreferrer" rel="noopener noreferrer"
aria-label="LinkedIn" aria-label="LinkedIn"
class="opacity-60 hover:opacity-100 transition-opacity" class="hover:text-[#0F172A] transition-colors"
> >
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" class="w-[18px] h-[18px] md:w-5 md:h-5" fill="currentColor" aria-hidden="true"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" class="w-[18px] h-[18px] md:w-5 md:h-5" fill="currentColor" aria-hidden="true">
<path d="M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433a2.062 2.062 0 01-2.063-2.065 2.063 2.063 0 112.063 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z"/> <path d="M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433a2.062 2.062 0 01-2.063-2.065 2.063 2.063 0 112.063 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z"/>
@@ -98,19 +101,24 @@
target="_blank" target="_blank"
rel="noopener noreferrer" rel="noopener noreferrer"
aria-label="Substack" aria-label="Substack"
class="opacity-60 hover:opacity-100 transition-opacity" class="hover:text-[#0F172A] transition-colors"
> >
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" class="w-[18px] h-[18px] md:w-5 md:h-5" fill="currentColor" aria-hidden="true"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" class="w-[18px] h-[18px] md:w-5 md:h-5" fill="currentColor" aria-hidden="true">
<path d="M22.539 8.242H1.46V5.406h21.08v2.836zM1.46 10.812V24L12 18.11 22.54 24V10.812H1.46zM22.54 0H1.46v2.836h21.08V0z"/> <path d="M22.539 8.242H1.46V5.406h21.08v2.836zM1.46 10.812V24L12 18.11 22.54 24V10.812H1.46zM22.54 0H1.46v2.836h21.08V0z"/>
</svg> </svg>
</a> </a>
<!-- TODO V1.3 : ajouter logo Pinterest quand compte créé -->
</div> </div>
</div> </div>
</footer> </footer>
<style>
/* V1.5-C.4 : label newsletter en Courier New 12px, encre douce */
.footer-label {
font-family: 'Courier New', Courier, monospace;
}
</style>
<script> <script>
const form = document.getElementById('subscribe-form') as HTMLFormElement | null; const form = document.getElementById('subscribe-form') as HTMLFormElement | null;
const msg = document.getElementById('subscribe-msg') as HTMLParagraphElement | null; const msg = document.getElementById('subscribe-msg') as HTMLParagraphElement | null;
@@ -146,14 +154,12 @@
}); });
// V1.3-E : intercept clics liens Manifeste depuis le footer -> preview centrale sur racine. // V1.3-E : intercept clics liens Manifeste depuis le footer -> preview centrale sur racine.
// Sur /a-propos, /mentions-legales, /manifeste lui-meme : navigation normale.
document.querySelectorAll<HTMLAnchorElement>('a[data-manifeste-link]').forEach((el) => { document.querySelectorAll<HTMLAnchorElement>('a[data-manifeste-link]').forEach((el) => {
el.addEventListener('click', (e) => { el.addEventListener('click', (e) => {
if (window.location.pathname === '/') { if (window.location.pathname === '/') {
e.preventDefault(); e.preventDefault();
window.dispatchEvent(new CustomEvent('preview-open', { detail: { type: 'manifeste' } })); window.dispatchEvent(new CustomEvent('preview-open', { detail: { type: 'manifeste' } }));
} }
// sinon : navigation normale vers /manifeste
}); });
}); });
</script> </script>

View File

@@ -1,11 +1,11 @@
--- ---
// SiteHeader.astro - V1.3-C : header 1 ligne fine, liens cliquables, phrase intention Roboto Condensed // SiteHeader.astro - V1.5-C : header lowercase + mobile 1 ligne unique (truncate ellipsis)
// Palette V1.3 figee : papier #FAFAF7, encre #0F172A, encre douce #475569, border #E5E7EB // Palette V1.3 figee : papier #FAFAF7, encre #0F172A, encre douce #475569, border #E5E7EB
// Composition : // Composition :
// Desktop (>= md) : 1 ligne ~44px - Trans-Former | Jules Neny | architecture d'ecologie politique [phrase intention right-aligned, Roboto Condensed] // Desktop (>= md) : 1 ligne ~44px - trans-former | Jules Neny | architecture d'ecologie politique [phrase intention right-aligned, Roboto Condensed]
// Mobile (< md) : 2 lignes compactes - ligne 1 Trans-Former / ligne 2 Jules Neny . AEP (cliquables) - phrase intention masquee // Mobile (< md) : 1 SEULE ligne compacte (V1.5-C.2) - trans-former . Jules Neny . AEP, truncate ellipsis si overflow, phrase intention masquee
// Liens : // Liens (V1.5-C.3 confirmes) :
// Trans-Former -> / // trans-former -> /
// Jules Neny -> /a-propos // Jules Neny -> /a-propos
// architecture d'ecologie politique -> https://aep.trans-former.fr (same-tab, site frere coherent) // architecture d'ecologie politique -> https://aep.trans-former.fr (same-tab, site frere coherent)
// Typo phrase intention : Roboto Condensed Variable @fontsource (weight 400, font-stretch 75%) // Typo phrase intention : Roboto Condensed Variable @fontsource (weight 400, font-stretch 75%)
@@ -15,37 +15,34 @@ import '@fontsource-variable/roboto-condensed/wght.css';
class="site-header w-full border-b border-[#E5E7EB] bg-[#FAFAF7] text-[#0F172A] px-4 md:px-6 flex items-center" class="site-header w-full border-b border-[#E5E7EB] bg-[#FAFAF7] text-[#0F172A] px-4 md:px-6 flex items-center"
role="banner" role="banner"
> >
<!-- Bloc identite (gauche) --> <!-- Bloc identite (gauche) - V1.5-C.2 : 1 ligne unique mobile + desktop, truncate ellipsis si overflow -->
<nav <nav
class="flex flex-col md:flex-row md:items-baseline gap-x-2 gap-y-0.5 flex-shrink-0" class="identite flex flex-row items-baseline gap-x-1.5 md:gap-x-2 min-w-0 flex-shrink overflow-hidden whitespace-nowrap"
aria-label="identite site" aria-label="identite site"
> >
<!-- Ligne 1 desktop = wordmark inline ; mobile = ligne dediee --> <!-- V1.5-C.1 : lowercase "trans-former" (retire l'effet marque corporate) -->
<a <a
href="/" href="/"
class="font-semibold tracking-tight text-[#0F172A] hover:text-[#0F172A] text-[15px] md:text-[16px] leading-none no-underline hover:underline underline-offset-2 decoration-1" class="font-semibold tracking-tight text-[#0F172A] hover:text-[#0F172A] text-[15px] md:text-[16px] leading-none no-underline hover:underline underline-offset-2 decoration-1 flex-shrink-0"
aria-label="trans-former.fr - accueil" aria-label="trans-former.fr - accueil"
> >
Trans-Former trans-former
</a> </a>
<!-- Bloc secondaire : Jules Neny . AEP (mobile : ligne 2 ; desktop : inline) --> <span class="text-[#94A3B8] leading-none flex-shrink-0" aria-hidden="true">·</span>
<span class="flex items-baseline gap-1.5 text-[#475569] leading-none"> <a
<span class="text-[#94A3B8] hidden md:inline" aria-hidden="true">·</span> href="/a-propos"
<a class="text-[12px] md:text-[13px] text-[#475569] hover:text-[#0F172A] no-underline hover:underline underline-offset-2 decoration-1 leading-none flex-shrink-0"
href="/a-propos" >
class="text-[12px] md:text-[13px] text-[#475569] hover:text-[#0F172A] no-underline hover:underline underline-offset-2 decoration-1" Jules Neny
> </a>
Jules Neny <span class="text-[#94A3B8] leading-none flex-shrink-0" aria-hidden="true">·</span>
</a> <a
<span class="text-[#94A3B8]" aria-hidden="true">·</span> href="https://aep.trans-former.fr"
<a class="text-[12px] md:text-[13px] text-[#475569] hover:text-[#0F172A] no-underline hover:underline underline-offset-2 decoration-1 leading-none truncate min-w-0"
href="https://aep.trans-former.fr" >
class="text-[12px] md:text-[13px] text-[#475569] hover:text-[#0F172A] no-underline hover:underline underline-offset-2 decoration-1" architecture d'écologie politique
> </a>
architecture d'écologie politique
</a>
</span>
</nav> </nav>
<!-- Phrase intention (droite, desktop only) - Roboto Condensed allongee --> <!-- Phrase intention (droite, desktop only) - Roboto Condensed allongee -->
@@ -60,12 +57,11 @@ import '@fontsource-variable/roboto-condensed/wght.css';
.site-header { .site-header {
height: 44px; height: 44px;
} }
/* V1.5-C.2 : mobile 1 ligne unique, hauteur identique desktop (44px) */
@media (max-width: 767px) { @media (max-width: 767px) {
.site-header { .site-header {
height: auto; height: 44px;
min-height: 48px; min-height: 44px;
padding-top: 6px;
padding-bottom: 6px;
} }
} }
/* Phrase intention : Roboto Condensed Variable, font-stretch 75% (allongement vertical condense) /* Phrase intention : Roboto Condensed Variable, font-stretch 75% (allongement vertical condense)

View File

@@ -1,80 +1,46 @@
<script setup lang="ts"> <script setup lang="ts">
import { ref, onMounted } from 'vue'; import { ref, onMounted } from 'vue';
// V1.5-E : on consomme désormais le journal unifié agrégé par n8n interface BeholdPost {
// (sources RSSHub self-host → data.trans-former.fr/journal.json),
// au lieu de l'API Behold directe (rate-limit, plafond 6 posts gratuit).
interface JournalItem {
id: string;
platform: string;
date: string;
titre: string;
extrait?: string;
url: string;
thumbnail: string | null;
}
interface JournalPayload {
generatedAt: string;
items: JournalItem[];
}
interface InstaPost {
id: string; id: string;
permalink: string; permalink: string;
thumbnailUrl: string | null; mediaUrl: string;
caption: string; thumbnailUrl?: string;
caption?: string;
mediaType: 'IMAGE' | 'VIDEO' | 'CAROUSEL_ALBUM';
timestamp: string; timestamp: string;
} }
const props = defineProps<{ const props = defineProps<{
/** handle Instagram sans @ (ex: 'aep.politique', 'julesneny') — sert à filtrer le journal */ feedId: string;
account: string; account: string;
accountUrl: string; accountUrl: string;
fallbackBio?: string; fallbackBio?: string;
/** nombre max de posts affichés (défaut 6, parité avec ancien Behold) */
max?: number;
}>(); }>();
const posts = ref<InstaPost[]>([]); const posts = ref<BeholdPost[]>([]);
const loading = ref(true); const loading = ref(true);
const error = ref<string | null>(null); const error = ref<string | null>(null);
const JOURNAL_URL = const isPlaceholder = (id: string) => !id || id.startsWith('PLACEHOLDER_');
(import.meta as unknown as { env: Record<string, string | undefined> }).env
.PUBLIC_JOURNAL_URL || 'https://data.trans-former.fr/journal.json';
const accountHandle = (props.account || '').replace(/^@/, '').toLowerCase();
const limit = props.max ?? 6;
onMounted(async () => { onMounted(async () => {
if (isPlaceholder(props.feedId)) {
loading.value = false;
error.value = 'no-feed-id';
return;
}
try { try {
const controller = new AbortController(); const controller = new AbortController();
const timeoutId = setTimeout(() => controller.abort(), 8000); const timeoutId = setTimeout(() => controller.abort(), 5000);
const res = await fetch(JOURNAL_URL, { const res = await fetch(`https://feeds.behold.so/${props.feedId}`, {
signal: controller.signal, signal: controller.signal,
cache: 'no-store',
}); });
clearTimeout(timeoutId); clearTimeout(timeoutId);
if (!res.ok) throw new Error(`Journal returned ${res.status}`); if (!res.ok) throw new Error(`Behold returned ${res.status}`);
const data = (await res.json()) as JournalPayload; const data = await res.json();
const all = Array.isArray(data?.items) ? data.items : []; const items: BeholdPost[] = Array.isArray(data) ? data : (data.posts ?? []);
posts.value = all posts.value = items.slice(0, 6);
.filter(
(it) =>
it.platform === 'instagram' &&
typeof it.url === 'string' &&
it.url.toLowerCase().includes(`/${accountHandle}`),
)
.slice(0, limit)
.map((it) => ({
id: it.id,
permalink: it.url,
thumbnailUrl: it.thumbnail ?? null,
caption: it.titre || it.extrait || '',
timestamp: it.date,
}));
if (!posts.value.length) error.value = 'no-posts';
} catch (e) { } catch (e) {
error.value = (e as Error).message || 'fetch-error'; error.value = (e as Error).message || 'fetch-error';
} finally { } finally {
@@ -105,28 +71,24 @@ onMounted(async () => {
/> />
</div> </div>
<div v-else-if="posts.length" class="grid grid-cols-2 gap-1 p-1"> <div
v-else-if="posts.length"
class="grid grid-cols-2 gap-1 p-1"
>
<a <a
v-for="post in posts" v-for="post in posts"
:key="post.id" :key="post.id"
:href="post.permalink" :href="post.permalink"
target="_blank" target="_blank"
rel="noopener" rel="noopener"
class="block aspect-square overflow-hidden group bg-neutral-100" class="block aspect-square overflow-hidden group"
> >
<img <img
v-if="post.thumbnailUrl" :src="post.thumbnailUrl || post.mediaUrl"
:src="post.thumbnailUrl"
:alt="post.caption?.slice(0, 80) || account" :alt="post.caption?.slice(0, 80) || account"
loading="lazy" loading="lazy"
class="w-full h-full object-cover group-hover:scale-105 transition-transform" class="w-full h-full object-cover group-hover:scale-105 transition-transform"
/> />
<span
v-else
class="w-full h-full flex items-center justify-center text-[10px] text-neutral-400 p-2 text-center"
>
{{ post.caption?.slice(0, 60) || account }}
</span>
</a> </a>
</div> </div>

View File

@@ -13,16 +13,28 @@ import HamburgerMenu from '../components/astro/HamburgerMenu.astro';
<main class="h-full overflow-y-auto bg-white"> <main class="h-full overflow-y-auto bg-white">
<article class="max-w-2xl mx-auto px-6 py-16 md:py-24"> <article class="max-w-2xl mx-auto px-6 py-16 md:py-24">
<header class="mb-10"> <!-- V1.5-BIO : photo Jules a droite du titre desktop, dessous mobile. max-width 320px, radius 4px, eager (above the fold). -->
<p class="text-sm uppercase tracking-widest text-neutral-500 mb-3"> <header class="mb-10 flex flex-col md:flex-row md:items-start md:gap-8">
A propos <div class="flex-1 min-w-0">
</p> <p class="text-sm uppercase tracking-widest text-neutral-500 mb-3">
<h1 class="text-3xl md:text-4xl font-semibold text-neutral-900 leading-tight"> A propos
Jules Neny </p>
</h1> <h1 class="text-3xl md:text-4xl font-semibold text-neutral-900 leading-tight">
<p class="mt-3 text-neutral-600 text-base md:text-lg"> Jules Neny
Architecte HMONP. Ecrivain politique. Facilitateur. Bagneres-de-Bigorre, Pyrenees. </h1>
</p> <p class="mt-3 text-neutral-600 text-base md:text-lg">
Architecte HMONP. Ecrivain politique. Facilitateur. Bagneres-de-Bigorre, Pyrenees.
</p>
</div>
<img
src="/images/jules-profil.jpg"
alt="Jules Neny, architecte d'écologie politique"
width="320"
height="323"
loading="eager"
decoding="async"
class="w-full md:w-[200px] md:max-w-[200px] mt-6 md:mt-0 rounded-[4px] flex-shrink-0"
/>
</header> </header>
<div class="text-neutral-800 text-[17px] leading-[1.75] space-y-6"> <div class="text-neutral-800 text-[17px] leading-[1.75] space-y-6">