generated from gitea_admin/default
Compare commits
4 Commits
543f7c8fcd
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| b0ccb82447 | |||
| dc345b5d75 | |||
| d5ba657681 | |||
| d01917fcec |
@@ -5,10 +5,11 @@
|
|||||||
</DsHeading>
|
</DsHeading>
|
||||||
<div class="confetti"></div>
|
<div class="confetti"></div>
|
||||||
<div class="contact_spe_descripion">
|
<div class="contact_spe_descripion">
|
||||||
<div class="contact_spe_descripion_item contact_spe_descripion_item--nom">{{ nom }}</div>
|
<div class="contact_spe_descripion_item contact_spe_descripion_item--nom">{{ nom }}<span class="contact_spe_descripion_item--poste">, {{ poste }}</span></div>
|
||||||
<div class="contact_spe_descripion_item contact_spe_descripion_item--poste">{{ poste }}</div>
|
|
||||||
<div v-if="numero" class="contact_spe_descripion_item contact_spe_descripion_item--numero">{{ numero }}</div>
|
<div v-if="numero" class="contact_spe_descripion_item contact_spe_descripion_item--numero">{{ numero }}</div>
|
||||||
<div v-if="mail" class="contact_spe_descripion_item contact_spe_descripion_item--numero">{{ mail }}</div>
|
<div v-if="mail" class="contact_spe_descripion_item contact_spe_descripion_item--numero">{{ mail }}</div>
|
||||||
|
<div v-if="nom2" class="contact_spe_descripion_item contact_spe_descripion_item--nom">{{ nom2 }}<span v-if="poste2" class="contact_spe_descripion_item--poste">, {{ poste2 }}</span></div>
|
||||||
|
<div v-if="mail2" class="contact_spe_descripion_item contact_spe_descripion_item--numero">{{ mail2 }}</div>
|
||||||
<div v-if="adresse" class="contact_spe_descripion_item contact_spe_descripion_item--numero">{{ adresse }}</div>
|
<div v-if="adresse" class="contact_spe_descripion_item contact_spe_descripion_item--numero">{{ adresse }}</div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
@@ -21,8 +22,11 @@
|
|||||||
titre: { type: String, required: true },
|
titre: { type: String, required: true },
|
||||||
nom: { type: String, required: true },
|
nom: { type: String, required: true },
|
||||||
poste: { type: String, required: true },
|
poste: { type: String, required: true },
|
||||||
|
nom2: { type: String, default: '' },
|
||||||
|
poste2: { type: String, default: '' },
|
||||||
numero: { type: String, default: '' },
|
numero: { type: String, default: '' },
|
||||||
mail: { type: String, required: true },
|
mail: { type: String, required: true },
|
||||||
|
mail2: { type: String, required: true },
|
||||||
adresse: { type: String, default: ''}
|
adresse: { type: String, default: ''}
|
||||||
})
|
})
|
||||||
</script>
|
</script>
|
||||||
@@ -50,14 +54,23 @@
|
|||||||
.contact_spe_descripion {
|
.contact_spe_descripion {
|
||||||
max-width: 370px;
|
max-width: 370px;
|
||||||
.contact_spe_descripion_item {
|
.contact_spe_descripion_item {
|
||||||
padding-bottom: 10px;
|
//padding-bottom: 10px;
|
||||||
&--nom {
|
&--nom {
|
||||||
font-weight: var(--fw-semibold);
|
font-weight: var(--fw-semibold);
|
||||||
}
|
}
|
||||||
&--poste {
|
&--poste {
|
||||||
font-weight: var(--fw-light);
|
font-weight: var(--fw-light);
|
||||||
}
|
}
|
||||||
|
&--nom {
|
||||||
|
padding-top: 12px;
|
||||||
|
}
|
||||||
|
&--numero {
|
||||||
|
font-weight: var(--fw-extralight);
|
||||||
|
color: var(--c-text-black-soft);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,13 @@
|
|||||||
|
|
||||||
<!-- Content -->
|
<!-- Content -->
|
||||||
<div class="rounded-card__content">
|
<div class="rounded-card__content">
|
||||||
<NuxtLink v-if="url" :to="url" class="rounded-card__title-link">
|
<NuxtLink
|
||||||
|
v-if="url"
|
||||||
|
:to="url"
|
||||||
|
:target="isExternalUrl ? '_blank' : undefined"
|
||||||
|
:rel="isExternalUrl ? 'noopener noreferrer' : undefined"
|
||||||
|
class="rounded-card__title-link"
|
||||||
|
>
|
||||||
<DsHeading as="h5" tone="default" class="rounded-card__title">
|
<DsHeading as="h5" tone="default" class="rounded-card__title">
|
||||||
{{ title }}
|
{{ title }}
|
||||||
</DsHeading>
|
</DsHeading>
|
||||||
@@ -34,7 +40,7 @@
|
|||||||
import DsButtonArrow from '@root/design-system/primitives/DsButtonArrow.vue'
|
import DsButtonArrow from '@root/design-system/primitives/DsButtonArrow.vue'
|
||||||
|
|
||||||
|
|
||||||
defineProps({
|
const props = defineProps({
|
||||||
id: { type: [String, Number], required: true },
|
id: { type: [String, Number], required: true },
|
||||||
title: { type: String, required: true },
|
title: { type: String, required: true },
|
||||||
url: { type: String, required: true },
|
url: { type: String, required: true },
|
||||||
@@ -43,6 +49,8 @@
|
|||||||
imgAlt: { type: String, default: '' },
|
imgAlt: { type: String, default: '' },
|
||||||
ratio: { type: String, default: 'square' },
|
ratio: { type: String, default: 'square' },
|
||||||
})
|
})
|
||||||
|
|
||||||
|
const isExternalUrl = computed(() => /^https?:\/\//i.test(props.url))
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
|
|||||||
@@ -126,10 +126,14 @@
|
|||||||
|
|
||||||
<PageSection tone="" content-size="default" padded_size="md" class="contact_spe_wp">
|
<PageSection tone="" content-size="default" padded_size="md" class="contact_spe_wp">
|
||||||
<ContactSpecifique
|
<ContactSpecifique
|
||||||
titre="Contacter le service mécénat"
|
titre="Contacter le service des relations publiques et partenariats"
|
||||||
nom="Pierre Brouchoud et Audrey Chauvelot"
|
nom="Audrey Chauvelot"
|
||||||
poste="Responsables du mécénat"
|
poste="déléguée aux partenariats"
|
||||||
mail="pierre.brouchoud@orchestre-ile.com / audrey.chauvelot@orchestre-ile.com"
|
numero="+33 (0)7 84 39 26 91"
|
||||||
|
mail="audrey.chauvelot@orchestre-ile.com"
|
||||||
|
nom2="Etienne Gresset"
|
||||||
|
poste2="chargé de mécénat"
|
||||||
|
mail2="etienne.gresset@orchestre-ile.com"
|
||||||
adresse=""
|
adresse=""
|
||||||
/>
|
/>
|
||||||
</PageSection>
|
</PageSection>
|
||||||
|
|||||||
@@ -7,6 +7,7 @@
|
|||||||
<Breadcrumb/>
|
<Breadcrumb/>
|
||||||
</PageSection>
|
</PageSection>
|
||||||
|
|
||||||
|
|
||||||
<!-- ================== -->
|
<!-- ================== -->
|
||||||
<!-- EN-TêTE -->
|
<!-- EN-TêTE -->
|
||||||
<!-- ================== -->
|
<!-- ================== -->
|
||||||
@@ -17,13 +18,12 @@
|
|||||||
<div class="fiche_header_titres">
|
<div class="fiche_header_titres">
|
||||||
<div>
|
<div>
|
||||||
<DsHeading as="h1" tone="default" textcase="uppercase" class="concert-card__title">
|
<DsHeading as="h1" tone="default" textcase="uppercase" class="concert-card__title">
|
||||||
Nos mécènes
|
Membres du Cercle des mécènes
|
||||||
</DsHeading>
|
</DsHeading>
|
||||||
</div>
|
<DsText as="p" align="justify">
|
||||||
|
|
||||||
<DsText as="p" align="justify">
|
|
||||||
Merci à nos mécènes pour leur soutien !
|
Merci à nos mécènes pour leur soutien !
|
||||||
</DsText>
|
</DsText>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="fiche_header_img">
|
<div class="fiche_header_img">
|
||||||
|
|
||||||
@@ -74,12 +74,36 @@
|
|||||||
|
|
||||||
const cards_ppt = ref([
|
const cards_ppt = ref([
|
||||||
{
|
{
|
||||||
id: '1',
|
id: '5',
|
||||||
imgSrc: '/contenus/ag2r.jpeg',
|
imgSrc: '/contenus/norma.jpeg',
|
||||||
imgAlt: 'logo',
|
imgAlt: 'logo',
|
||||||
title: "Fondation d’entreprise AG2R La Mondiale pour la vitalité artistique",
|
title: "Cabinet Norma Avocats",
|
||||||
description: `pour son soutien au programme "Mozart au cinéma"`,
|
description: `Membres du Cercle des mécènes`,
|
||||||
url:"https://www.ag2rlamondiale.fr/groupe/nos-engagements/soutenir-les-arts-et-promouvoir-le-sport/fondation-pour-la-vitalite-artistique",
|
url:"https://www.norma-avocats.com/",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: '6',
|
||||||
|
imgSrc: '/contenus/logo_kawai.jpg',
|
||||||
|
imgAlt: 'logo',
|
||||||
|
title: "Kawai",
|
||||||
|
description: `Membres du Cercle des mécènes`,
|
||||||
|
url:"https://www.kawai.fr/",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: '7',
|
||||||
|
imgSrc: '/contenus/logo_shigeru_kawai.png',
|
||||||
|
imgAlt: 'logo',
|
||||||
|
title: "Shigeru Kawai",
|
||||||
|
description: `Membres du Cercle des mécènes`,
|
||||||
|
url:"https://www.kawai.fr/products/pianos%C3%A0queue/gammeshigerukawai/",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: '8',
|
||||||
|
imgSrc: '/contenus/logo_kairns.jpg',
|
||||||
|
imgAlt: 'logo',
|
||||||
|
title: "Kairns Avocats",
|
||||||
|
description: `Membres du Cercle des mécènes`,
|
||||||
|
url:"https://kairns.fr/",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: '2',
|
id: '2',
|
||||||
@@ -97,6 +121,7 @@
|
|||||||
description: `pour son soutien au projet "Enchantons l'Île-de-France" à Montereau-Fault-Yonne`,
|
description: `pour son soutien au projet "Enchantons l'Île-de-France" à Montereau-Fault-Yonne`,
|
||||||
url:"https://www.caissedesdepots.fr/mecenat",
|
url:"https://www.caissedesdepots.fr/mecenat",
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
id: '4',
|
id: '4',
|
||||||
imgSrc: '/contenus/adp.png',
|
imgSrc: '/contenus/adp.png',
|
||||||
@@ -105,20 +130,42 @@
|
|||||||
description: `pour son soutien au projet "Du sur-mesure pour les petites oreilles"`,
|
description: `pour son soutien au projet "Du sur-mesure pour les petites oreilles"`,
|
||||||
url:"https://www.parisaeroport.fr/groupe/rse/fondation",
|
url:"https://www.parisaeroport.fr/groupe/rse/fondation",
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
||||||
{
|
{
|
||||||
id: '5',
|
id: '4',
|
||||||
imgSrc: '/contenus/norma.jpeg',
|
imgSrc: '/contenus/logo_fonds_dotation_francis_kurkdjian.jpg',
|
||||||
imgAlt: 'logo',
|
imgAlt: 'logo',
|
||||||
title: "Cabinet Norma Avocats",
|
title: "Fonds de dotation Francis Kurkdjian",
|
||||||
description: `pour son mécénat de compétence`,
|
description: `pour son soutien à la création du spectacle Les drôles de petites bêtes`,
|
||||||
url:"https://www.norma-avocats.com/",
|
url:"https://www.fondsfranciskurkdjian.org/",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: '4',
|
||||||
|
imgSrc: '/contenus/logo_sasakawa.jpg',
|
||||||
|
imgAlt: 'logo',
|
||||||
|
title: "Fondation Sasakawa",
|
||||||
|
description: `pour son soutien à la tournée au Japon`,
|
||||||
|
url:"https://www.ffjs.org/?lang=fr",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: '4',
|
||||||
|
imgSrc: '/contenus/logo_cnm.png',
|
||||||
|
imgAlt: 'logo',
|
||||||
|
title: "CNM",
|
||||||
|
description: `pour son soutien à la tournée au Japon`,
|
||||||
|
url:"https://cnm.fr/",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: '1',
|
||||||
|
imgSrc: '/contenus/ag2r.jpeg',
|
||||||
|
imgAlt: 'logo',
|
||||||
|
title: "Fondation d’entreprise AG2R La Mondiale pour la vitalité artistique",
|
||||||
|
description: `pour son soutien au programme "Mozart au cinéma"`,
|
||||||
|
url:"https://www.ag2rlamondiale.fr/groupe/nos-engagements/soutenir-les-arts-et-promouvoir-le-sport/fondation-pour-la-vitalite-artistique",
|
||||||
},
|
},
|
||||||
])
|
])
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
@@ -126,6 +173,7 @@
|
|||||||
// SPÉCIFIQUE À CETTE PAGE
|
// SPÉCIFIQUE À CETTE PAGE
|
||||||
// =======================
|
// =======================
|
||||||
.mecenes--page {
|
.mecenes--page {
|
||||||
|
|
||||||
.chiffres_wp {
|
.chiffres_wp {
|
||||||
background-color: var(--c-background-vert);
|
background-color: var(--c-background-vert);
|
||||||
margin-bottom: 50px;
|
margin-bottom: 50px;
|
||||||
@@ -148,7 +196,7 @@
|
|||||||
margin-bottom: 40px;
|
margin-bottom: 40px;
|
||||||
}
|
}
|
||||||
.theme_ppt_cards_wp {
|
.theme_ppt_cards_wp {
|
||||||
margin-top: -390px;
|
margin-top: -225px;
|
||||||
|
|
||||||
padding-top: 30px;
|
padding-top: 30px;
|
||||||
padding-bottom: 80px;
|
padding-bottom: 80px;
|
||||||
@@ -156,9 +204,29 @@
|
|||||||
object-fit: contain;
|
object-fit: contain;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@media (max-width: 1300px) {
|
||||||
|
.theme_ppt_cards_wp {
|
||||||
|
margin-top: -230px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media (max-width: 1200px) {
|
||||||
|
.theme_ppt_cards_wp {
|
||||||
|
margin-top: -330px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media (max-width: 900px) {
|
||||||
|
.theme_ppt_cards_wp {
|
||||||
|
margin-top: -280px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@media (max-width: 900px) {
|
||||||
|
.theme_ppt_cards_wp {
|
||||||
|
margin-top: -320px;
|
||||||
|
}
|
||||||
|
}
|
||||||
@media (max-width: 599px) {
|
@media (max-width: 599px) {
|
||||||
.theme_ppt_cards_wp {
|
.theme_ppt_cards_wp {
|
||||||
margin-top: -620px;
|
margin-top: -590px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -110,7 +110,7 @@
|
|||||||
<div class="flex justify-center flex-wrap gap-5">
|
<div class="flex justify-center flex-wrap gap-5">
|
||||||
<div>
|
<div>
|
||||||
<a
|
<a
|
||||||
href="https://media.orchestre-ile.com/uploads/cercle_des_particuliers_plaquette_2025_981efe3857.pdf"
|
href="https://ondif.shop.secutix.com/selection/service?productId=10229737867152"
|
||||||
download="cercle_des_particuliers_plaquette_2025"
|
download="cercle_des_particuliers_plaquette_2025"
|
||||||
class="flex items-center gap-2 px-6 py-2 bg-secondary-brand-container text-primary-brand-container rounded-full font-bold text-sm hover:bg-primary-fixed transition-colors"
|
class="flex items-center gap-2 px-6 py-2 bg-secondary-brand-container text-primary-brand-container rounded-full font-bold text-sm hover:bg-primary-fixed transition-colors"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
@@ -122,7 +122,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<a
|
<a
|
||||||
href="https://media.orchestre-ile.com/uploads/cercle_des_particuliers_plaquette_2025_981efe3857.pdf"
|
href="https://media.orchestre-ile.com/uploads/cercle_des_particuliers_plaquette_2627_1f932e64ec.pdf"
|
||||||
download="cercle_des_particuliers_plaquette_2025"
|
download="cercle_des_particuliers_plaquette_2025"
|
||||||
class="flex items-center gap-2 px-6 py-2 bg-primary-container text-on-primary-container rounded-full font-bold text-sm hover:bg-primary-fixed transition-colors"
|
class="flex items-center gap-2 px-6 py-2 bg-primary-container text-on-primary-container rounded-full font-bold text-sm hover:bg-primary-fixed transition-colors"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
@@ -143,10 +143,14 @@
|
|||||||
|
|
||||||
<PageSection tone="" content-size="default" padded_size="md" class="contact_spe_wp">
|
<PageSection tone="" content-size="default" padded_size="md" class="contact_spe_wp">
|
||||||
<ContactSpecifique
|
<ContactSpecifique
|
||||||
titre="Contacter le service mécénat"
|
titre="Contacter le service des relations publiques et partenariats"
|
||||||
nom="Audrey Chauvelot"
|
nom="Audrey Chauvelot"
|
||||||
poste="Chargée du mécénat"
|
poste="déléguée aux partenariats"
|
||||||
|
numero="+33 (0)7 84 39 26 91"
|
||||||
mail="audrey.chauvelot@orchestre-ile.com"
|
mail="audrey.chauvelot@orchestre-ile.com"
|
||||||
|
nom2="Etienne Gresset"
|
||||||
|
poste2="chargé de mécénat"
|
||||||
|
mail2="etienne.gresset@orchestre-ile.com"
|
||||||
adresse=""
|
adresse=""
|
||||||
/>
|
/>
|
||||||
</PageSection>
|
</PageSection>
|
||||||
|
|||||||
@@ -128,9 +128,12 @@
|
|||||||
<ContactSpecifique
|
<ContactSpecifique
|
||||||
titre="Contacter le service des relations publiques et partenariats"
|
titre="Contacter le service des relations publiques et partenariats"
|
||||||
nom="Audrey Chauvelot"
|
nom="Audrey Chauvelot"
|
||||||
poste=""
|
poste="déléguée aux partenariats"
|
||||||
numero="+33 (0)7 84 39 26 91"
|
numero="+33 (0)7 84 39 26 91"
|
||||||
mail="audrey.chauvelot@orchestre-ile.com"
|
mail="audrey.chauvelot@orchestre-ile.com"
|
||||||
|
nom2="Etienne Gresset"
|
||||||
|
poste2="chargé de mécénat"
|
||||||
|
mail2="etienne.gresset@orchestre-ile.com"
|
||||||
adresse=""
|
adresse=""
|
||||||
/>
|
/>
|
||||||
</PageSection>
|
</PageSection>
|
||||||
|
|||||||
BIN
public/contenus/logo_cnm.png
Normal file
BIN
public/contenus/logo_cnm.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 52 KiB |
BIN
public/contenus/logo_fonds_dotation_francis_kurkdjian.jpg
Normal file
BIN
public/contenus/logo_fonds_dotation_francis_kurkdjian.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 126 KiB |
BIN
public/contenus/logo_kairns.jpg
Normal file
BIN
public/contenus/logo_kairns.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 177 KiB |
BIN
public/contenus/logo_kawai.jpg
Normal file
BIN
public/contenus/logo_kawai.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 71 KiB |
BIN
public/contenus/logo_sasakawa.jpg
Normal file
BIN
public/contenus/logo_sasakawa.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 15 KiB |
BIN
public/contenus/logo_shigeru_kawai.png
Normal file
BIN
public/contenus/logo_shigeru_kawai.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 71 KiB |
Reference in New Issue
Block a user