Skip to content

Commit

Permalink
fix: retour design page presentation
Browse files Browse the repository at this point in the history
  • Loading branch information
abelkhay committed Sep 5, 2023
1 parent 6cc629b commit d4d98c0
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 19 deletions.
15 changes: 4 additions & 11 deletions src/assets/img/presentation/dora-logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -30,27 +30,50 @@ <h3 class="h5 text-secondary fw-bold">{{ slides.titre }}</h3>
<p class="text-secondary">
{{ slides.text }}
</p>
<a *ngIf="slides.titre === 'La mise à jour'" href="https://dora.fabrique.social.gouv.fr" target="_blank">
<a
*ngIf="slides.titre === 'La mise à jour'"
href="https://dora.fabrique.social.gouv.fr"
target="_blank"
rel="noopener noreferrer">
<span class="visually-hidden">Accéder à DORA</span>
<img class="my-3" width="auto" height="auto" src="/assets/img/presentation/dora-logo.svg" alt="" />
<img class="my-3" height="100px" src="/assets/img/presentation/dora-logo.svg" alt="" />
</a>
</div>
<div class="col-md-6 my-auto" *ngIf="slides.titre === 'Standardisation'">
<h5 class="text-secondary fw-bold">{{ slides.titre }}</h5>
<p class="text-secondary">
Nous référençons les lieux d'inclusion numérique qui ont renseigné leurs données au format du
<a
class="text-decoration-none"
href="https://lamednum.coop/schema-de-donnees-des-lieux-de-mediation-numerique-2/"
target="_blank">
style="color: white; font-weight: bold; text-decoration: underline"
target="_blank"
rel="noopener noreferrer">
standard de données des lieux d'inclusion numérique
</a>
établi par la
<a class="text-decoration-none" href="https://lamednum.coop/" target="_blank">Mednum</a>
<a
href="https://lamednum.coop/"
style="color: white; font-weight: bold; text-decoration: underline"
target="_blank"
rel="noopener noreferrer">
Mednum
</a>
,
<a class="text-decoration-none" href="https://datactivist.coop/fr/" target="_blank">Datactivist</a>
<a
href="https://datactivist.coop/fr/"
style="color: white; font-weight: bold; text-decoration: underline"
target="_blank"
rel="noopener noreferrer">
Datactivist
</a>
et
<a class="text-decoration-none" href="https://agence-cohesion-territoires.gouv.fr/" target="_blank">l'ANCT</a>
<a
href="https://agence-cohesion-territoires.gouv.fr/"
style="color: white; font-weight: bold; text-decoration: underline"
target="_blank"
rel="noopener noreferrer">
l'ANCT
</a>
.
</p>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,5 @@ export class PresentationPage {
this._currentSlide$.next(this._currentSlide$.value + 1 > 3 ? 0 : this._currentSlide$.value + 1);
};

public slidesBackground: string[] = ['bg-orientation', 'bg-visibilite', 'bg-centralisation', 'bg-actualisation'];
public slidesBackground: string[] = ['bg-orientation', 'bg-centralisation', 'bg-actualisation', 'bg-visibilite'];
}

0 comments on commit d4d98c0

Please sign in to comment.