|
|
@@ -7,60 +7,78 @@
|
|
|
:iconClasses="iconClasses"
|
|
|
:titleText="'Des webinaires pour tous'"
|
|
|
/>
|
|
|
- <LayoutUITitlePage title="SIMPLIFIEZ LA GESTION ET LA COMMUNICATION DE VOTRE STRUCTURE CULTURELLE" subtitle="Votre orchestre, école de danse ou votre fédération mérite les outils les plus performants du marché pour briller en toute simplicité. Découvrez comment nos outils peuvent transformer votre quotidien : " />
|
|
|
+ <LayoutUITitlePage
|
|
|
+ title="SIMPLIFIEZ LA GESTION ET LA COMMUNICATION DE VOTRE STRUCTURE CULTURELLE"
|
|
|
+ subtitle="Votre orchestre, école de danse ou votre fédération mérite les outils les plus performants du marché pour briller en toute simplicité. Découvrez comment nos outils peuvent transformer votre quotidien : "
|
|
|
+ />
|
|
|
<v-row no-gutters class="centered-row ml-12 mt-12">
|
|
|
- <v-col v-for="(course, index) in courses" :key="index" cols="4">
|
|
|
- <v-row>
|
|
|
- <div class="title-card-container">
|
|
|
- <span class="number-card">{{ course.number }}</span>
|
|
|
- <h4 class="card-title">{{ course.title }}</h4>
|
|
|
- <v-img class="logo-img" :src="course.imageUrl" />
|
|
|
- </div>
|
|
|
- <p class="details-card">{{ course.description }}</p>
|
|
|
- </v-row>
|
|
|
- <v-row>
|
|
|
- <div class="container-blue">
|
|
|
- <h6 class="title-obj">Objectifs</h6>
|
|
|
- <ul class="list-obj">
|
|
|
- <li
|
|
|
- v-for="(objective, objIndex) in course.objectives"
|
|
|
- :key="objIndex"
|
|
|
+ <v-col
|
|
|
+ cols="12"
|
|
|
+ sm="6"
|
|
|
+ md="4"
|
|
|
+ v-for="(course, index) in courses"
|
|
|
+ :key="index"
|
|
|
+ >
|
|
|
+ <v-card class="mb-4">
|
|
|
+ <v-card-text>
|
|
|
+ <v-row>
|
|
|
+ <div class="title-card-container">
|
|
|
+ <span class="number-card">{{ course.number }}</span>
|
|
|
+ <h4 class="card-title">{{ course.title }}</h4>
|
|
|
+ <v-img class="logo-img" :src="course.imageUrl" />
|
|
|
+ </div>
|
|
|
+ <p class="details-card">{{ course.description }}</p>
|
|
|
+ </v-row>
|
|
|
+ <v-row>
|
|
|
+ <div class="container-blue">
|
|
|
+ <h6 class="title-obj">Objectifs</h6>
|
|
|
+ <ul class="list-obj">
|
|
|
+ <li
|
|
|
+ v-for="(objective, objIndex) in course.objectives"
|
|
|
+ :key="objIndex"
|
|
|
+ >
|
|
|
+ {{ objective }}
|
|
|
+ </li>
|
|
|
+ </ul>
|
|
|
+ </div>
|
|
|
+ </v-row>
|
|
|
+ <v-row>
|
|
|
+ <v-chip class="badge-time"
|
|
|
+ >Durée : {{ course.duration }}</v-chip
|
|
|
>
|
|
|
- {{ objective }}
|
|
|
- </li>
|
|
|
- </ul>
|
|
|
- </div>
|
|
|
- </v-row>
|
|
|
- <v-row>
|
|
|
- <v-chip class="badge-time">Durée : {{ course.duration }}</v-chip>
|
|
|
- </v-row>
|
|
|
- <div class="container-blue">
|
|
|
- <h6 class="title-obj">Programme</h6>
|
|
|
- <v-row>
|
|
|
- <v-col
|
|
|
- v-for="column in course.additionalObjectives"
|
|
|
- :key="column.id"
|
|
|
- cols="6"
|
|
|
- >
|
|
|
- <ul class="list-obj">
|
|
|
- <li
|
|
|
- v-for="(objective, objIndex) in column.objectives"
|
|
|
- :key="objIndex"
|
|
|
+ </v-row>
|
|
|
+ <div class="container-blue">
|
|
|
+ <h6 class="title-obj">Programme</h6>
|
|
|
+ <v-row>
|
|
|
+ <v-col
|
|
|
+ v-for="column in course.additionalObjectives"
|
|
|
+ :key="column.id"
|
|
|
+ cols="6"
|
|
|
>
|
|
|
- {{ objective }}
|
|
|
- </li>
|
|
|
- </ul>
|
|
|
- </v-col>
|
|
|
- </v-row>
|
|
|
- </div>
|
|
|
- <v-row>
|
|
|
- <v-chip class="badge-time">{{ course.price }}</v-chip>
|
|
|
- </v-row>
|
|
|
- <v-row>
|
|
|
- <v-chip class="chip-download" @click="showModal(course.title)">
|
|
|
- Inscrivez-vous
|
|
|
- </v-chip>
|
|
|
- </v-row>
|
|
|
+ <ul class="list-obj">
|
|
|
+ <li
|
|
|
+ v-for="(objective, objIndex) in column.objectives"
|
|
|
+ :key="objIndex"
|
|
|
+ >
|
|
|
+ {{ objective }}
|
|
|
+ </li>
|
|
|
+ </ul>
|
|
|
+ </v-col>
|
|
|
+ </v-row>
|
|
|
+ </div>
|
|
|
+ <v-row>
|
|
|
+ <v-chip class="badge-time">{{ course.price }}</v-chip>
|
|
|
+ </v-row>
|
|
|
+ <v-row>
|
|
|
+ <v-chip
|
|
|
+ class="chip-download"
|
|
|
+ @click="showModal(course.title)"
|
|
|
+ >
|
|
|
+ Inscrivez-vous
|
|
|
+ </v-chip>
|
|
|
+ </v-row>
|
|
|
+ </v-card-text>
|
|
|
+ </v-card>
|
|
|
</v-col>
|
|
|
</v-row>
|
|
|
</div>
|
|
|
@@ -68,12 +86,14 @@
|
|
|
<div v-if="currentWebinaire" class="calendar-modal">
|
|
|
<div class="container-green">
|
|
|
<LayoutUISubTitle
|
|
|
- :titleColor="'#fff'"
|
|
|
- :iconSize="6"
|
|
|
- :iconClasses="iconClasses"
|
|
|
- :titleText="'Inscrivez vous'"
|
|
|
- />
|
|
|
- <h3 class="title-inscription text-center mt-4">Vous y êtes presque !</h3>
|
|
|
+ :titleColor="'#fff'"
|
|
|
+ :iconSize="6"
|
|
|
+ :iconClasses="iconClasses"
|
|
|
+ :titleText="'Inscrivez vous'"
|
|
|
+ />
|
|
|
+ <h3 class="title-inscription text-center mt-4">
|
|
|
+ Vous y êtes presque !
|
|
|
+ </h3>
|
|
|
<iframe
|
|
|
:src="webinaireCalendars[currentWebinaire]"
|
|
|
width="700"
|
|
|
@@ -115,7 +135,7 @@ const downloadPdf = (pdfUrl) => {
|
|
|
};
|
|
|
const courses = [
|
|
|
{
|
|
|
- number: "01",
|
|
|
+ // number: "01",
|
|
|
title: "Webinaire Artist ",
|
|
|
description:
|
|
|
"Ce webinaire est destiné aux acteurs culturels tels que les orchestres, les chorales, les compagnies et troupes de danse, théâtre et cirque. Il vous permettra de découvrir les fonctionnalités du logiciels, les avantages et les différentes versions.. ",
|
|
|
@@ -151,7 +171,7 @@ const courses = [
|
|
|
"https://www.opentalent.fr/fileadmin/stockage/stockage/support/programme/PF-School-2023-02_2-jours.pdf",
|
|
|
},
|
|
|
{
|
|
|
- number: "02",
|
|
|
+ // number: "02",
|
|
|
title: "Webinaire School",
|
|
|
// imageUrl: "/images/opentalent_school_black.jpg",
|
|
|
description:
|
|
|
@@ -188,7 +208,7 @@ const courses = [
|
|
|
"https://www.opentalent.fr/fileadmin/stockage/stockage/support/programme/PF-School-2023-02_1-jour.pdf",
|
|
|
},
|
|
|
{
|
|
|
- number: "03",
|
|
|
+ // number: "03",
|
|
|
title: "Webinaire Manager",
|
|
|
// imageUrl: "/images/opentalent_school_black.jpg",
|
|
|
description:
|
|
|
@@ -224,23 +244,28 @@ const courses = [
|
|
|
</script>
|
|
|
|
|
|
<style scoped>
|
|
|
+.v-card {
|
|
|
+ border: none !important;
|
|
|
+ box-shadow: none !important;
|
|
|
+ background-color: transparent !important;
|
|
|
+}
|
|
|
:deep().subtitle {
|
|
|
font-size: 1.5rem;
|
|
|
font-weight: normal !important;
|
|
|
line-height: 2rem;
|
|
|
- letter-spacing: .1rem;
|
|
|
+ letter-spacing: 0.1rem;
|
|
|
margin-bottom: 1rem;
|
|
|
}
|
|
|
|
|
|
:deep().title {
|
|
|
font-size: 2rem;
|
|
|
line-height: 3.5rem;
|
|
|
- letter-spacing: .1rem;
|
|
|
+ letter-spacing: 0.1rem;
|
|
|
margin-top: 2rem;
|
|
|
- margin-bottom: .5rem;
|
|
|
+ margin-bottom: 0.5rem;
|
|
|
text-transform: uppercase;
|
|
|
}
|
|
|
-.title-inscription{
|
|
|
+.title-inscription {
|
|
|
font-family: "Barlow";
|
|
|
font-style: normal;
|
|
|
font-weight: 600;
|
|
|
@@ -357,8 +382,6 @@ const courses = [
|
|
|
background: #e34461;
|
|
|
color: black;
|
|
|
background-color: #fff;
|
|
|
- font-family: "Barlow";
|
|
|
- font-style: normal;
|
|
|
font-weight: 500;
|
|
|
font-size: 14px;
|
|
|
line-height: 18px;
|
|
|
@@ -371,8 +394,6 @@ const courses = [
|
|
|
|
|
|
.list-obj {
|
|
|
margin-top: 0.5rem;
|
|
|
- font-family: "Barlow";
|
|
|
- font-style: normal;
|
|
|
font-weight: 300;
|
|
|
font-size: 14px;
|
|
|
line-height: 18px;
|
|
|
@@ -381,8 +402,6 @@ const courses = [
|
|
|
}
|
|
|
|
|
|
.title-obj {
|
|
|
- font-family: "Barlow";
|
|
|
- font-style: normal;
|
|
|
font-weight: 500;
|
|
|
font-size: 16px;
|
|
|
line-height: 20px;
|
|
|
@@ -403,8 +422,6 @@ const courses = [
|
|
|
}
|
|
|
|
|
|
.details-card {
|
|
|
- font-family: "Barlow";
|
|
|
- font-style: normal;
|
|
|
font-weight: 300;
|
|
|
font-size: 1rem;
|
|
|
line-height: 1rem;
|