-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f5dc69f
commit 5f9fdb8
Showing
15 changed files
with
127 additions
and
322 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
title: "À Propos" | ||
date: 2024-05-11T08:20:10-04:00 | ||
draft: false | ||
--- | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{{ define "main"}} | ||
<div class="about-us-section"> | ||
<div class="container my-5"> | ||
{{ partial "aboutUs.html" . }} | ||
</div> | ||
</div> | ||
{{end}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,7 @@ | ||
{{ define "main"}} | ||
<div class="about-us-section"> | ||
<div class="container my-5"> | ||
{{ partial "aboutUs.html" . }} | ||
</div> | ||
</div> | ||
{{/* <div class="equipe"> | ||
<section id="carouselExampleIndicators" class="carousel slide" data-bs-ride="carousel" data-bs-pause="false"> | ||
<div class="carousel-indicators"> | ||
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="0" class="active" aria-current="true" aria-label="Slide 1"></button> | ||
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="1" aria-label="Slide 2"></button> | ||
<button type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide-to="2" aria-label="Slide 3"></button> | ||
</div> | ||
<div class="carousel-inner"> | ||
<div class="carousel-item active" data-bs-interval="5000"> | ||
<img src="/images/membres/evenement/3.png" class="d-block h-75 w-100 carousel-image" alt="..."> | ||
</div> | ||
<div class="carousel-item" data-bs-interval="5000"> | ||
<img src="/images/membres/evenement/2.png" class="d-block h-75 w-100 carousel-image" alt="..."> | ||
</div> | ||
<div class="carousel-item" data-bs-interval="5000"> | ||
<img src="/images/membres/evenement/1.png" class="d-block h-75 w-100 carousel-image" alt="..."> | ||
</div> | ||
</div> | ||
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide="prev"> | ||
<span class="carousel-control-prev-icon" aria-hidden="true"></span> | ||
<span class="visually-hidden">Previous</span> | ||
</button> | ||
<button class="carousel-control-next" type="button" data-bs-target="#carouselExampleIndicators" data-bs-slide="next"> | ||
<span class="carousel-control-next-icon" aria-hidden="true"></span> | ||
<span class="visually-hidden">Next</span> | ||
</button> | ||
</section> | ||
{{ partial "membres.html" . }} | ||
</div> */}} | ||
{{ define "main"}} | ||
<div class="team-section"> | ||
<div class="container my-5"> | ||
{{ partial "equipe.html" . }} | ||
</div> | ||
</div> | ||
{{end}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
{{ with .Site.Data.equipe}} | ||
{{ if .enable}} | ||
<div class="row"> | ||
<h2 style="border-bottom: solid 2px grey;"><b>{{ .title }}</b></h2> | ||
</div> | ||
|
||
<!-- Members section --> | ||
<div class="members"> | ||
<div class="container py-5"> | ||
<div class="row text-center"> | ||
{{ range .membres}} | ||
<div class="col-md-4 col-sm-6 my-3"> | ||
<div class="member"> | ||
<div class="image mb-4"> | ||
{{ if .image }} | ||
<img src="{{ .image | relURL }}" alt="{{.name}}" style="box-shadow: 0px 10px 10px 0px black;"> | ||
{{ else }} | ||
<img src="{{ .Site.baseurl }}/images/membres/anonyme.jpg" alt="{{.name}}" style="box-shadow: 0px 10px 10px 0px black;"> | ||
{{ end }} | ||
</div> | ||
<div class="member-information"> | ||
<h4>{{.name}}</h4> | ||
<h5>{{.post}}</h5> | ||
</div> | ||
{{ if .social }} | ||
<div class="row"> | ||
<div class="social-links"> | ||
{{ range .social}} | ||
<a class="mx-1" href="{{.url}}"><i class="fab fa-{{ .title }} fa-lg"></i></a> | ||
{{end}} | ||
</div> | ||
</div> | ||
{{ end }} | ||
</div> | ||
</div> | ||
{{end}} | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<!-- Becoming member section --> | ||
<div class="becoming-member"> | ||
<div class="container"> | ||
<div class="row py-3 mt-5"> | ||
<div class="col-12"> | ||
<div class="d-flex justify-content-center"> | ||
<a class="btn py-2 px-5" href="{{ .button.url }}">{{ .button.becomingMember }}</a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
{{end}} | ||
{{end}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.