Mise à jour de 'src/app/components/main-menu/main-menu.component.html'
continuous-integration/drone/push Build is passing Details

main
Aurian JAULT 11 months ago
parent 3125474121
commit db478bc629

@ -9,7 +9,7 @@
<section id="diplomas" class="diplomas"> <section id="diplomas" class="diplomas">
<h2>Diplômes</h2> <h2>Diplômes</h2>
<div class="diploma-item" *ngFor="let dipl of dipls"> <div class="diploma-item" *ngFor="let dipl of dipls">
<img src={{dipl.img}} alt={{dipl.name}} > <img [src]='dipl.img' alt={{dipl.name}} >
<div class="item-content"> <div class="item-content">
<h3> {{ dipl.name }} </h3> <h3> {{ dipl.name }} </h3>
<p> {{ dipl.description }}</p> <p> {{ dipl.description }}</p>
@ -20,7 +20,7 @@
<section id="projects" class="projects"> <section id="projects" class="projects">
<h2>Projets</h2> <h2>Projets</h2>
<div *ngFor="let projet of projs" class="project-item"> <div *ngFor="let projet of projs" class="project-item">
<img src={{projet.img}} alt={{projet.name}}> <img [src]='projet.img' alt={{projet.name}}>
<div class="project-content"> <div class="project-content">
<h3><a href={{projet.link}}>{{ projet.name }}</a></h3> <h3><a href={{projet.link}}>{{ projet.name }}</a></h3>
<p>{{projet.description}}</p> <p>{{projet.description}}</p>

Loading…
Cancel
Save