| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339 |
- <template>
- <div id="Catalogue">
- <LayoutContainer>
- <div class="grey-container">
- <div class="title-container mt-12 mb-6">
- <v-icon size="6" class="fa-solid fa-circle icon-title" />
- <h4 class="subtitle">Découvrez notre catalogue de formation</h4>
- </div>
- <v-row>
- <v-col cols="12">
- <h4 class="catalog ml-6">Catalogue</h4>
- </v-col>
- </v-row>
- <v-row no-gutters class="centered-row ml-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 pédagogiques</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>
- </v-row>
- <div class="container-blue">
- <h6 class="title-obj">Objectifs pédagogiques</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"
- >
- {{ 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="downloadPdf(course.downloadLink)"
- >
- Télécharger le programme de formation
- </v-chip>
- </v-row>
- </v-col>
- </v-row>
- </div>
- </LayoutContainer>
- </div>
- </template>
- <script setup>
- const downloadPdf = (pdfUrl) => {
- window.open(pdfUrl, "_blank");
- };
- const courses = [
- {
- number: "01",
- title: "Formation initiale ",
- description:
- "Cette formation est destinée aux nouveaux utilisateurs. Elle est obligatoire lors de l'acquisition du logiciel. Elle est également utile lors d'un changement de personnel dans la structure. ",
- objectives: [
- "Ajuster la configuration du logiciel",
- "Gérer les élèves et leurs familles",
- "Générer des factures et faire le suivi des règlements",
- "Gérer le planning des cours",
- "Evaluer les élèves et générer des bulletins",
- "Communiquer avec les personnes du répertoire",
- ],
- duration: "14h",
- additionalObjectives: [
- {
- id: 1,
- objectives: [
- "Accès et interface",
- "Configuration",
- "Répertoire",
- "Agenda",
- ],
- },
- {
- id: 2,
- objectives: [
- "Parc matériel",
- "Suivi pédagogique",
- "Facturation",
- "Communication",
- ],
- },
- ],
- price: "1 580 € TTC",
- downloadLink:
- "https://www.opentalent.fr/fileadmin/stockage/stockage/support/programme/PF-School-2023-02_2-jours.pdf",
- },
- {
- number: "02",
- title: "Formation complémentaire",
- // imageUrl: "/images/opentalent_school_black.jpg",
- description:
- "Cette formation suppose d’avoir les connaissances de base sur le logiciel. Elle permet d’avoir une remise à niveau sur sur des fonctionnalités qui ont été incorrectement comprises / configurées, ou qui ont été récemment développées.",
- objectives: [
- "Ajuster la configuration du logiciel",
- "Gérer les élèves et leurs familles",
- ],
- duration: "7h",
- additionalObjectives: [
- {
- id: 1,
- objectives: ["Accès et interface", "Configuration"],
- },
- {
- id: 2,
- objectives: ["Répertoire"],
- },
- ],
- price: "790€ TTC",
- downloadLink:
- "https://www.opentalent.fr/fileadmin/stockage/stockage/support/programme/PF-School-2023-02_1-jour.pdf",
- },
- {
- number: "03",
- title: "Formation Typo 3",
- // imageUrl: "/images/opentalent_school_black.jpg",
- description:
- "Cette formation est destinée aux nouveaux utilisateurs Typo3. Elle est optionnelle et permet d'aller plus loin dans la gestion du site internet intégré.",
- objectives: [
- "Gérer les pages et leur accès",
- "Gérer le contenu des pages et leur accès",
- "Configurer les options du site internet côté logiciel",
- ],
- duration: "7h",
- additionalObjectives: [
- {
- id: 1,
- objectives: ["Gestion des pages", "Gestion des blocs"],
- },
- {
- id: 2,
- objectives: ["Configuration côté logiciel"],
- },
- ],
- price: "790€ TTC",
- downloadLink:
- " https://www.opentalent.fr/fileadmin/stockage/stockage/support/programme/PF-Typo3-2023-02_1-jour.pdf",
- },
- ];
- </script>
- <style scoped>
- .grey-container {
- background-color: #f8f8f8;
- padding: 4rem;
- }
- .title-container {
- display: flex;
- justify-content: center;
- align-items: center;
- font-weight: 600;
- font-size: 1.5rem;
- line-height: 18px;
- color: #091d20;
- width: 20rem;
- margin-left: 2rem;
- }
- .subtitle {
- color: #071b1f;
- font-family: "Barlow";
- font-size: 1rem;
- font-style: normal;
- font-weight: 600;
- line-height: 15px;
- letter-spacing: 1.8px;
- text-transform: uppercase;
- }
- .title {
- font-family: "Barlow";
- font-weight: 600;
- font-size: 3rem;
- line-height: 18px;
- color: #091d20;
- margin-bottom: 4rem;
- }
- .icon-title {
- margin-right: 0.7rem;
- color: #64afb7;
- }
- .centered-row {
- margin: auto;
- justify-content: center;
- }
- .catalog {
- font-family: "Barlow";
- font-style: normal;
- font-weight: 600;
- font-size: 42px;
- line-height: 42px;
- color: #071b1f;
- margin-bottom: 3rem;
- }
- .chip-download {
- width: 31rem;
- background: #e34461;
- color: black;
- background-color: azure;
- font-family: "Barlow";
- font-style: normal;
- font-weight: 500;
- font-size: 14px;
- line-height: 18px;
- margin-top: 1rem;
- margin-bottom: 1rem;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .badge-time {
- width: 31rem;
- background: #e34461;
- color: black;
- background-color: #fff;
- font-family: "Barlow";
- font-style: normal;
- font-weight: 500;
- font-size: 14px;
- line-height: 18px;
- margin-top: 1rem;
- margin-bottom: 1rem;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- .list-obj {
- margin-top: 0.5rem;
- font-family: "Barlow";
- font-style: normal;
- font-weight: 300;
- font-size: 14px;
- line-height: 18px;
- color: #000000;
- }
- .title-obj {
- font-family: "Barlow";
- font-style: normal;
- font-weight: 500;
- font-size: 16px;
- line-height: 20px;
- color: #0e2d32;
- }
- .container-blue {
- justify-content: space-between;
- align-items: center;
- background: #c3e5e7;
- padding: 1rem;
- margin-top: 1rem;
- margin-bottom: 1rem;
- border-radius: 1rem;
- padding-left: 1.5rem;
- width: 31rem;
- height: 11rem;
- }
- .details-card {
- font-family: "Barlow";
- font-style: normal;
- font-weight: 300;
- font-size: 1rem;
- line-height: 1rem;
- color: #091d20;
- margin-top: 1rem;
- width: 31rem;
- height: 4rem;
- }
- .number-card {
- font-family: "Barlow";
- font-style: normal;
- font-weight: 500;
- font-size: 1.3rem;
- color: #e34461;
- margin-right: 1rem;
- }
- .title-card-container {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- font-family: "Barlow";
- font-style: normal;
- font-weight: 600;
- font-size: 1.2rem;
- width: 31rem;
- border-bottom: 1px solid #0e2d32;
- }
- .logo-img {
- width: 10rem;
- height: 3rem;
- margin-top: 1rem;
- margin-bottom: 1rem;
- margin-left: 4rem;
- }
- </style>
|