Commit 7a7bfe51d1c76a458ecc44780eb63050f1a914fd
1 parent
d867f0d3
Transformation en site principal
Showing
6 changed files
with
74 additions
and
19 deletions
Show diff stats
Gemfile.lock
_config.yml
... | ... | @@ -13,16 +13,39 @@ |
13 | 13 | # you will see them accessed via {{ site.title }}, {{ site.email }}, and so on. |
14 | 14 | # You can create any custom variable you would like, and they will be accessible |
15 | 15 | # in the templates via {{ site.myvariable }}. |
16 | -title: Compte rendus de réunion | |
16 | +title: Le Club Info | |
17 | 17 | author: Le Club Info |
18 | 18 | email: club.informatique@polytech-lille.fr |
19 | 19 | description: > # this means to ignore newlines until "baseurl:" |
20 | - Compte-rendus des réunions du club « Le Club Info » | |
20 | + Site internet du club « Le Club Info » | |
21 | 21 | lang: fr |
22 | -baseurl: "/cr" # the subpath of your site, e.g. /blog | |
22 | +baseurl: "" # the subpath of your site, e.g. /blog | |
23 | 23 | url: "https://clubinfo.plil.net" # the base hostname & protocol for your site, e.g. http://example.com |
24 | -twitter_username: LeClubInfo | |
25 | -github_username: ClubInfoPolytechLille | |
24 | +facebook_link: "https://www.facebook.com/clubinfo.polytechlille/" | |
25 | +github_link: "https://github.com/ClubInfoPolytechLille" | |
26 | + | |
27 | +collections: | |
28 | + crs: | |
29 | + output: true | |
30 | + permalink: /cr/:year/:month/:day/:title.html | |
31 | + tutos: | |
32 | + output: true | |
33 | + bureaux: | |
34 | + | |
35 | +defaults: | |
36 | + - scope: | |
37 | + path: "" | |
38 | + values: | |
39 | + layout: page | |
40 | + - scope: | |
41 | + type: crs | |
42 | + values: | |
43 | + title: "Compte-rendu de réunion" | |
44 | + layout: cr | |
45 | + - scope: | |
46 | + type: tutos | |
47 | + values: | |
48 | + layout: tuto | |
26 | 49 | |
27 | 50 | # Build settings |
28 | 51 | markdown: kramdown | ... | ... |
about.md deleted
assets/main.scss
... | ... | @@ -56,7 +56,7 @@ $on-laptop: 800px; |
56 | 56 | font-weight: normal; |
57 | 57 | } |
58 | 58 | |
59 | -h1, h2, h3, h4, h5, h6 { | |
59 | +.site-title, h1, h2, h3, h4, h5, h6 { | |
60 | 60 | font-family: 'geosanslightregular'; |
61 | 61 | } |
62 | 62 | |
... | ... | @@ -79,3 +79,19 @@ h1, h2, h3, h4, h5, h6 { |
79 | 79 | } |
80 | 80 | } |
81 | 81 | |
82 | +.main-image { | |
83 | + max-width: 300px; | |
84 | + border-radius: 5px; | |
85 | + margin: auto; | |
86 | + display: block; | |
87 | +} | |
88 | + | |
89 | +.footer-col-1 { | |
90 | + width: -webkit-calc(40% - (#{$spacing-unit} / 2)); | |
91 | + width: calc(40% - (#{$spacing-unit} / 2)); | |
92 | +} | |
93 | + | |
94 | +.footer-col-2 { | |
95 | + width: -webkit-calc(60% - (#{$spacing-unit} / 2)); | |
96 | + width: calc(60% - (#{$spacing-unit} / 2)); | |
97 | +} | ... | ... |
index.md
1 | 1 | --- |
2 | -# You don't need to edit this file, it's empty on purpose. | |
3 | -# Edit theme's home layout instead if you wanna make some changes | |
4 | -# See: https://jekyllrb.com/docs/themes/#overriding-theme-defaults | |
5 | -layout: home | |
2 | +title: Accueil | |
3 | +show_title: false | |
6 | 4 | --- |
5 | + | |
6 | +<img class="main-image" src="{{ "/assets/logo-ci-inv.svg" | relative_url }}" alt="Logo du Club Info" /> | |
7 | + | |
8 | +# Qui sommes-nous ? | |
9 | +Le Club Info est un club du BDE de Polytech Lille où nous faisons de l'informatique en tout genre. Petit et gros projets de programmation, démontage et réparation de PC, discussion et partage de connaissances, tout le monde peut y trouver son compte, qu'il soit débutant ou confirmé ! | |
10 | + | |
11 | +# Comment nous contacter ? | |
12 | +Tu es curieux ou tu souhaiterais avoir de l'aide pour un problème ? | |
13 | + | |
14 | +Tu peux nous envoyer un message sur [notre page Facebook]({{ site.facebook_link }}) ou bien nous [envoyer un mail](mailto:{{ site.email }}), ou alors passer pendant notre rassemblement qui a lieu chaque mercredi midi dans la salle E303. | |
15 | + | ... | ... |