| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326 |
- <template>
- <AnchoredSection id="catalog">
- <LayoutContainer>
- <v-row class="custom-row">
- <LayoutUISubTitle>
- Découvrez notre catalogue de formation
- </LayoutUISubTitle>
- <LayoutUITitle class="ml-8">
- Catalogue
- </LayoutUITitle>
- </v-row>
- <v-row class="custom-row catalog">
- <v-col
- v-for="(course, index) in courses"
- :key="index"
- cols="4"
- >
- <v-card class="mb-4">
- <v-card-text>
- <div class="title-card-container">
- <span class="number-card">
- {{ course.number }}
- </span>
- <h4>
- {{ course.title }}
- </h4>
- </div>
- <p class="details-card mb-6">
- {{ course.description }}
- </p>
- <div class="objectives">
- <h6 class="title-obj">
- Objectifs pédagogiques
- </h6>
- <ul>
- <li
- v-for="(objective, objIndex) in course.objectives"
- :key="objIndex"
- >
- {{ objective }}
- </li>
- </ul>
- </div>
- <div class="program">
- <h6 class="title-obj">
- Programme
- </h6>
- <v-row>
- <v-col
- v-for="column in course.program"
- :key="column.id"
- cols="6"
- >
- <ul>
- <li
- v-for="(objective, objIndex) in column.objectives"
- :key="objIndex"
- >
- {{ objective }}
- </li>
- </ul>
- </v-col>
- </v-row>
- </div>
- <v-chip class="badge-time">
- <span>
- Durée : {{ course.duration }}
- </span>
- </v-chip>
- <v-chip class="badge-time">
- <span>
- {{ course.price }}
- </span>
- </v-chip>
- <v-chip
- class="chip-register"
- @click="downloadPdf(course.downloadLink)"
- >
- Télécharger le programme de formation
- </v-chip>
- </v-card-text>
- </v-card>
- </v-col>
- </v-row>
- </LayoutContainer>
- </AnchoredSection>
- </template>
- <script setup lang="ts">
- import { useDisplay } from "vuetify";
- import AnchoredSection from "~/components/Layout/AnchoredSection.vue";
- import type { Training } from "~/types/interface";
- const { mdAndDown } = useDisplay();
- const downloadPdf = (pdfUrl: string) => {
- window.open(pdfUrl, "_blank");
- };
- const courses: Array<Training> = [
- {
- 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",
- "Évaluer les élèves et générer des bulletins",
- "Communiquer avec les personnes du répertoire",
- ],
- duration: "14h",
- program: [
- {
- 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",
- program: [
- {
- 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",
- program: [
- {
- 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>
- * {
- text-align: justify;
- }
- .custom-row {
- width: 90%;
- margin-left: auto;
- margin-right: auto;
- }
- .catalog {
- padding: 2rem;
- max-width: 90%;
- margin-left: auto;
- margin-right: auto;
- .v-card {
- border: none !important;
- box-shadow: none !important;
- background-color: transparent !important;
- }
- .title-card-container {
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- align-items: center;
- font-family: "Barlow", serif;
- font-style: normal;
- font-weight: 600;
- font-size: 1.2rem;
- width: 31rem;
- border-bottom: 1px solid #0e2d32;
- padding: 1rem 0;
- .number-card {
- font-family: "Barlow", serif;
- font-style: normal;
- font-weight: 500;
- font-size: 1.3rem;
- color: #b9e5e7;
- margin-right: 1rem;
- }
- }
- .details-card {
- font-family: "Barlow", serif;
- font-style: normal;
- font-weight: 300;
- font-size: 1rem;
- line-height: 1rem;
- color: #091d20;
- margin-top: 1rem;
- margin-bottom: .5rem;
- height: 5rem;
- }
- .objectives, .program {
- justify-content: space-between;
- align-items: center;
- background: #c3e5e7;
- margin-top: 1rem;
- margin-bottom: 1rem;
- border-radius: 1rem;
- padding: 1rem 1rem 1rem 1.5rem;
- height: 13rem;
- h6 {
- font-family: "Barlow", serif;
- font-style: normal;
- font-weight: 500;
- font-size: 16px;
- line-height: 20px;
- color: var(--primary-color);
- }
- ul {
- margin-top: 0.5rem;
- font-family: "Barlow", serif;
- font-style: normal;
- font-weight: 300;
- font-size: 14px;
- line-height: 18px;
- }
- }
- .badge-time {
- color: white;
- border: 1px solid #0e2d32;
- border-radius: 3rem;
- font-family: "Barlow", serif;
- 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;
- span {
- color: #0E2D32;
- }
- }
- .chip-register {
- border-radius: 3rem;
- font-family: "Barlow", serif;
- 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;
- }
- }
- </style>
|