84e843479d
ci/woodpecker/push/woodpecker Pipeline was successful
- nuxt-umami@3.2.1 installé, module configuré (host + website ID) - suppression injection script manuelle dans app.vue - TheHeader : logo § repassé en tracé SVG unique avec dégradé primary→accent Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
77 lines
2.2 KiB
Vue
77 lines
2.2 KiB
Vue
<template>
|
|
<div class="min-h-dvh">
|
|
<NuxtLoadingIndicator color="hsl(12, 76%, 48%)" />
|
|
<NuxtRouteAnnouncer />
|
|
|
|
<NuxtLayout>
|
|
<NuxtPage />
|
|
</NuxtLayout>
|
|
|
|
<ClientOnly>
|
|
<PlayerPersistent />
|
|
</ClientOnly>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
const paletteStore = usePaletteStore()
|
|
onMounted(() => paletteStore.applyToDOM())
|
|
|
|
const config = useRuntimeConfig()
|
|
const siteUrl = (config.public.siteUrl as string) || 'https://librodrome.org'
|
|
|
|
// Global SEO defaults — surchargeables page par page via useSeoPage()
|
|
useHead({
|
|
titleTemplate: (title) => title ? `${title} — Le Librodrome` : 'Le Librodrome',
|
|
})
|
|
|
|
useSeoMeta({
|
|
ogSiteName: 'Le Librodrome',
|
|
ogType: 'website',
|
|
ogLocale: 'fr_FR',
|
|
ogImage: `${siteUrl}/og-default.png`,
|
|
ogImageWidth: 1200,
|
|
ogImageHeight: 630,
|
|
twitterCard: 'summary_large_image',
|
|
twitterSite: '@librodrome',
|
|
})
|
|
|
|
// JSON-LD — Organisation + Livre
|
|
useHead({
|
|
script: [
|
|
{
|
|
type: 'application/ld+json',
|
|
innerHTML: JSON.stringify({
|
|
'@context': 'https://schema.org',
|
|
'@graph': [
|
|
{
|
|
'@type': 'Organization',
|
|
'@id': `${siteUrl}/#organization`,
|
|
name: 'Le Librodrome',
|
|
url: siteUrl,
|
|
logo: {
|
|
'@type': 'ImageObject',
|
|
url: `${siteUrl}/images/og-default.png`,
|
|
},
|
|
description: 'Plateforme d\'autonomie numérique, économique et citoyenne à l\'échelle des bassins de vie.',
|
|
},
|
|
{
|
|
'@type': 'Book',
|
|
'@id': `${siteUrl}/economique/modele-eco#book`,
|
|
name: 'Une économie du don — enfin concevable',
|
|
author: { '@type': 'Person', name: 'Yvv' },
|
|
publisher: { '@id': `${siteUrl}/#organization` },
|
|
isbn: '979-1-042-45206-3',
|
|
inLanguage: 'fr',
|
|
image: `${siteUrl}/images/Couv-Economie-du-don.jpg`,
|
|
url: `${siteUrl}/economique/modele-eco`,
|
|
description: 'Un livre et 9 chansons pour explorer les fondements d\'une économie fondée sur le don.',
|
|
license: 'https://creativecommons.org/licenses/by-nc/4.0/',
|
|
},
|
|
],
|
|
}),
|
|
},
|
|
],
|
|
})
|
|
</script>
|