Skip to content

Commit

Permalink
feat(association): add THE team!
Browse files Browse the repository at this point in the history
  • Loading branch information
vgallet committed May 19, 2024
1 parent 7def7a6 commit 42828db
Show file tree
Hide file tree
Showing 11 changed files with 69 additions and 0 deletions.
41 changes: 41 additions & 0 deletions config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,47 @@ params:
# logo: "/img/partners/jb_beam.webp"
# url: "https://www.jetbrains.com/"

Team:
elisevanholsbeeck:
name: "Élise Vanholsbeeck"
photo: "/img/orga/elise_vanholsbeeck.jpeg"
linkedin: "https://www.linkedin.com/in/elise-vanholsbeeck-b4b7b5/"

xaviernopre:
name: "Xavier Nopre"
photo: "/img/orga/xavier_nopre.jpg"
linkedin: "https://www.linkedin.com/in/xnopre/"

remysanlaville:
name: "Rémy Sanlaville"
photo: "/img/orga/remy_sanlaville.jpeg"
linkedin: "https://www.linkedin.com/in/sanlaville/"

johanmartinsson:
name: "Johan Martinsson"
photo: "/img/orga/johan_martinsson.jpg"
linkedin: "https://www.linkedin.com/in/jomartinsson/"

bastiendavid:
name: "Bastien David"
photo: "/img/orga/bastien_david.jpeg"
linkedin: "https://www.linkedin.com/in/bastien-david-0b89864/"

yannickchiron:
name: "Yannick Chiron"
photo: "/img/orga/yannick_chiron.jpeg"
linkedin: "https://www.linkedin.com/in/yannickchiron/"

laurenttardif:
name: "Laurent Tardif"
photo: "/img/orga/laurent_tardif.jpeg"
linkedin: "https://www.linkedin.com/in/laurenttardif/"

victorgallet:
name: "Victor Gallet"
photo: "/img/orga/victor_gallet.jpeg"
linkedin: "https://www.linkedin.com/in/victor-gallet-047285109/"

SpeakersMap:
orga:
name: "Orga"
Expand Down
25 changes: 25 additions & 0 deletions content/association.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,31 @@ <h2 class="title" style="padding-top: 1em;">L'Association AlpesCraft</h2>
</p>
</div>

<h3 class="title">L'Équipe</h3>

{{ $team := $.Site.Params.team }}

<div class="container-fluid text-center" style="width: 50%">
<div class="row gutters-sm">
{{ range $key, $member := $team }}
<div class="col-sm-3">
<div class="card text-center border-0">
<div class="card-body text-center">
<img src="{{ $member.photo }}" alt="Photo {{ $member.name }}" class="card-img-top img-fluid img-thumbnail rounded-circle shadow-4-strong" loading="lazy">
<div class="card-body">
<h6 class="card-title">{{ $member.name }}</h6>
<p class="card-text">
{{ if $member.linkedin }}
<p><i class="fab fa-linkedin-in"></i> <span><a href="{{ $member.linkedin }}" about="linkedin {{ $member.name }}">Linkedin</a></span>
{{ end }}
</p>
</div>
</div>
</div>
</div>
{{ end }}
</div>
</div>
</section>

<!-- Footer -->
Expand Down
3 changes: 3 additions & 0 deletions layouts/partials/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@
<li class="list-inline-item">
<a href="mailto:{{ .email }}" aria-label="contact">Contact</a>
</li>
<li class="list-inline-item">
<a href="/association" aria-label="L'association AlpesCraft">L'association AlpesCraft</a>
</li>
<li class="list-inline-item">
<a href="/img/logo/communicationkit.zip" aria-label="kit de communication">Kit de communication</a>
</li>
Expand Down
Binary file added static/img/orga/bastien_david.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/img/orga/elise_vanholsbeeck.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/img/orga/johan_martinsson.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/img/orga/laurent_tardif.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/img/orga/remy_sanlaville.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/img/orga/victor_gallet.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/img/orga/xavier_nopre.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/img/orga/yannick_chiron.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 42828db

Please sign in to comment.