| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290 |
- <template>
- <AnchoredSection id="catalog">
- <LayoutContainer>
- <v-row class="background-block">
- <v-row class="center-90">
- <LayoutUISubTitle>
- Découvrez notre catalogue de formation
- </LayoutUISubTitle>
- <LayoutUITitle class="ml-8"> Catalogue </LayoutUITitle>
- </v-row>
- <v-row class="center-90 catalog">
- <v-col v-for="(course, index) in courses" :key="index" cols="12" lg="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="badge-time">Durée : {{ course.duration }}</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>
- <div class="badge-time">
- {{ course.price }}
- </div>
- <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>
- </v-row>
- </LayoutContainer>
- </AnchoredSection>
- </template>
- <script setup lang="ts">
- import AnchoredSection from '~/components/Layout/AnchoredSection.vue'
- import type { Training } from '~/types/interface'
- 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: '2 008,80€ TTC',
- downloadLink:
- 'files/PF-School-2024-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 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: '1004,40€ TTC',
- downloadLink:
- 'files/PF-School-2024-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 accessibilité',
- 'Gérer le contenu des pages et leur accessibilité',
- '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: '1004,40€ TTC',
- downloadLink:
- 'files/PF-Typo3-2024-02_1-jour.pdf',
- },
- ]
- </script>
- <style scoped lang="scss">
- .background-block{
- background: var(--neutral-color-alt-light);
- padding: 4rem;
- }
- .catalog {
- @media (max-width: 600px) {
- padding: 0.5rem;
- }
- .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-weight: 600;
- font-size: 1.2rem;
- width: 31rem;
- border-bottom: 1px solid var(--primary-color);
- padding: 1rem 0;
- .number-card {
- font-weight: 500;
- font-size: 1.3rem;
- color: var(--primary-color);
- margin-right: 1rem;
- }
- }
- .details-card {
- font-weight: 300;
- font-size: 1rem;
- line-height: 1rem;
- color: var(--primary-color);
- margin-top: 1rem;
- margin-bottom: 0.5rem;
- height: 5rem;
- }
- .objectives,
- .program {
- justify-content: space-between;
- align-items: center;
- background: var(--secondary-color-light);
- margin-top: 1rem;
- margin-bottom: 1rem;
- border-radius: 1rem;
- padding: 1rem 1rem 1rem 1.5rem;
- height: 13rem;
- h6 {
- font-weight: 500;
- font-size: 16px;
- line-height: 20px;
- color: var(--primary-color);
- }
- ul {
- margin-top: 0.5rem;
- font-weight: 300;
- font-size: 14px;
- line-height: 18px;
- }
- @media (max-width: 600px) {
- height: auto;
- }
- }
- .badge-time {
- color: var(--primary-color);
- background: var(--neutral-color);
- width: 100%;
- height: 36px;
- text-align: center;
- font-size: 18px;
- font-weight: 500;
- border-radius: 12px;
- vertical-align: center;
- padding-top: 6px;
- }
- .chip-register {
- border-radius: 3rem;
- font-weight: 500;
- font-size: 14px;
- line-height: 18px;
- margin-top: 1rem;
- margin-bottom: 1rem;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- }
- </style>
|