From f5e93f572b134f8fff49535ebc2cfb3b7962218a Mon Sep 17 00:00:00 2001 From: Alexel Date: Thu, 12 Oct 2023 14:59:53 -0400 Subject: [PATCH 1/3] =?UTF-8?q?Formattage=20index.gohtml=20Modification=20?= =?UTF-8?q?des=20=C3=A9l=C3=A9ments=20HTML=20de=20contenu=20Ajout=20d'ic?= =?UTF-8?q?=C3=B4nes=20pour=20les=20socials=20(Facebook=20et=20Instagram)?= =?UTF-8?q?=20Ajout=20de=20classes=20aux=20=C3=A9l=C3=A9ments=20HTML?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/icones/facebook-icon.svg | 10 ++++++++++ public/icones/instagram-icon.svg | 10 ++++++++++ templates/html/index.gohtml | 24 +++++++++--------------- 3 files changed, 29 insertions(+), 15 deletions(-) create mode 100644 public/icones/facebook-icon.svg create mode 100644 public/icones/instagram-icon.svg diff --git a/public/icones/facebook-icon.svg b/public/icones/facebook-icon.svg new file mode 100644 index 0000000..21d8104 --- /dev/null +++ b/public/icones/facebook-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/public/icones/instagram-icon.svg b/public/icones/instagram-icon.svg new file mode 100644 index 0000000..2fceb00 --- /dev/null +++ b/public/icones/instagram-icon.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/templates/html/index.gohtml b/templates/html/index.gohtml index 7e154a2..28f8229 100644 --- a/templates/html/index.gohtml +++ b/templates/html/index.gohtml @@ -12,27 +12,21 @@

AGECEM

Association Générale Étudiante du Cégep Édouard-Montpetit

-

+

Fondée en 1976, l’Association Étudiante est un organisme sans but lucratif voué à la défense des étudiant·e·s inscrit·e·s à l’enseignement régulier du Campus de Longueuil du Cégep Édouard-Montpetit, qu’iels étudient de jour ou de soir, à temps plein ou à temps partiel. -

-

Forte d’environ 6000 membres, elle veille à promouvoir un milieu pédagogique sain en se consacrant à les représenter, tant au niveau académique, politique, social, qu’environnemental.


Contact

-

Courriel

- permanence@agecem.org -

Téléphone

- (450) 679-7375 -

Addresse de coordination

- 945 Chemin de Chambly, Longueuil, QC J4H 3M6 -

Local

- B-31 -

Réseaux sociaux

- +
{{ template "snackbar-html" }} -- 2.45.2 From 70b0b44f9cf56828bc0548e49166b10462fdc986 Mon Sep 17 00:00:00 2001 From: Alexel Date: Thu, 12 Oct 2023 15:45:07 -0400 Subject: [PATCH 2/3] Ajout de CSS et changement de classes index.gohtml --- public/css/index.css | 39 +++++++++++++++++++++++++++++++++++++ templates/html/index.gohtml | 12 ++++++------ 2 files changed, 45 insertions(+), 6 deletions(-) diff --git a/public/css/index.css b/public/css/index.css index e69de29..0bc3f33 100644 --- a/public/css/index.css +++ b/public/css/index.css @@ -0,0 +1,39 @@ +.indexAbout { + font-family: "Poppins"; + font-weight: 400; + /*regular*/ + font-size: 1rem; + /*16px*/ + color: #000; + /*Bleu AGECEM*/ + line-height: 150%; +} + +.indexContactContent { + padding: 10px; +} + +.indexContactInfo { + font-family: "Poppins"; + font-weight: 400; + /*regular*/ + font-size: 1rem; + /*16px*/ + color: #000; + /*Bleu AGECEM*/ + line-height: 175%; + margin: 5px 0; +} + +.iconLink { + height: 50px; + width: 50px; +} + +.indexContactSocials { + display: grid; + column-gap: 10px; + grid-template-columns: repeat(auto-fit, 50px); +} + +.indexContactSocial {} \ No newline at end of file diff --git a/templates/html/index.gohtml b/templates/html/index.gohtml index 28f8229..b90f998 100644 --- a/templates/html/index.gohtml +++ b/templates/html/index.gohtml @@ -19,13 +19,13 @@

Contact

-

945 Chemin de Chambly, Longueuil, QC J4H 3M6, Local B-31

-

Téléphone: (450) 679-7375

-

Courriel:

+

Local B-31, 945 Chemin de Chambly, Longueuil, QC J4H 3M6

+

Téléphone: (450) 679-7375

+

Courriel:

- - - + + +
{{ template "snackbar-html" }} -- 2.45.2 From d3d562949a6bb534479fede60bdd576848c05d5b Mon Sep 17 00:00:00 2001 From: Alexel Date: Thu, 12 Oct 2023 16:58:37 -0400 Subject: [PATCH 3/3] fix donner les dimensions aux img des socials --- public/css/index.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/public/css/index.css b/public/css/index.css index 0bc3f33..52183ba 100644 --- a/public/css/index.css +++ b/public/css/index.css @@ -36,4 +36,7 @@ grid-template-columns: repeat(auto-fit, 50px); } -.indexContactSocial {} \ No newline at end of file +.indexContactSocial { + height: 50px; + width: 50px; +} \ No newline at end of file -- 2.45.2