Commit 7a7bfe51d1c76a458ecc44780eb63050f1a914fd

Authored by Geoffrey PREUD'HOMME
1 parent d867f0d3

Transformation en site principal

Gemfile.lock
... ... @@ -50,7 +50,7 @@ DEPENDENCIES
50 50 minima (~> 2.0)
51 51  
52 52 RUBY VERSION
53   - ruby 2.3.3p222
  53 + ruby 2.4.0p0
54 54  
55 55 BUNDLED WITH
56   - 1.13.6
  56 + 1.14.6
... ...
_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
... ...
_layouts/page.html 0 → 100644
... ... @@ -0,0 +1,14 @@
  1 +---
  2 +layout: default
  3 +---
  4 +
  5 +<div class="home">
  6 +
  7 + {% if page.show_title != false %}
  8 + <h1 class="post-title">{{ page.title }}</h1>
  9 + {% endif %}
  10 +
  11 + {{content}}
  12 +
  13 +</div>
  14 +
... ...
about.md deleted
... ... @@ -1,7 +0,0 @@
1   ----
2   -layout: page
3   -title: À propos
4   -permalink: /about/
5   ----
6   -
7   -Vous trouverez ici les compte-rendus des réunions du club « Le Club Info », club d'informatique du BDE de l'école d'ingénieurs Polytech Lille.
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 +
... ...