Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: retour design page presentation #347

Merged
merged 1 commit into from
Sep 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
15 changes: 4 additions & 11 deletions src/assets/img/presentation/dora-logo.svg
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'];
}