diff --git a/README.md b/README.md index 9e4640a..d44b26b 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,3 @@ Proposition de design pour Librezo. [voir le rendu](http://librezo.txmn.tk) - -## Build - -[Install Zola](https://getzola.org) - -```bash - zola serve -``` diff --git a/content/charte.md b/content/charte.md deleted file mode 100644 index 8e5c3ff..0000000 --- a/content/charte.md +++ /dev/null @@ -1,22 +0,0 @@ -+++ -title = "Charte" -+++ - -Librezo est un collectif autogéré d'individus, d’associations et d’entreprises qui mutualisent leurs ressources, compétences et connaissances au sein d'une structure à taille humaine dans le but de : - -* promouvoir des solutions informatiques en licences libres comme alternatives aux licences propriétaires des GAFAM -* encourager l’installation de serveurs auto-hébergés pour permettre à ses clients s’affranchir d’acteurs tiers et leur garantir la confidentialité et le contrôle de leurs données personnelles et de leur infrastructure numérique -* créer un réseau de prestataires de confiance sur l’ensemble du territoire -* accompagner ses clients dans leur utilisation des logiciels libres en vue de les rendre autonomes -* développer un modèle économique viable pour la promotion du logiciel libre en mettant en œuvre des prestations de service sur mesure associées à son utilisation -* La mission de Librezo s’inscrit dans une volonté technique de décentralisation des serveurs informatiques pour se préserver de la surveillance généralisée et de censure. Cette décentralisation répond également à la nécessaire réduction de l’empreinte énergétique du numérique. -* Les membres de Librezo et leurs partenaires sont promoteurs, utilisateurs, contributeurs ou ont une implication forte dans le logiciel libre. -* L'appartenance au collectif Librezo n'est pas liée à des accords financiers ou commerciaux, mais à l'évaluation par les autres membres du respect des valeurs et objectifs communs : - * liberté en tant que non nuisance symétrique - * horizontalité de la prise de décision - * partage et transmission des connaissances - * autonomie et entraide au sein d’une toile de confiance - * contribution au développement de l’écosystème du logiciel libre par la création de nouveaux outils informatiques - * politique locale des prestations favorisant la proximité géographique des clients et prestataires - -L’aventure Librezo est une expérimentation de démocratie d’entreprise. diff --git a/content/qui-sommes-nous.md b/content/qui-sommes-nous.md deleted file mode 100644 index a81a1d5..0000000 --- a/content/qui-sommes-nous.md +++ /dev/null @@ -1,36 +0,0 @@ -+++ -title = "Qui sommes-nous ?" -+++ - -## Qui sommes-nous ? - -Librezo est un collectif décentralisé, né de la rencontre d'ami·es libristes désirant partager leur passion et leur savoir-faire dans le domaine des réseaux et du logiciel libre. - -{{ team_box( - title = "Étienne Bouché", - place = "Melun", - subtitle = "Le Technicien engagé", - img = "poka.jpg", - description = "Blabla" -) }} -{{ team_box( - title = "Cédric Dumond", - place = "Montreuil", - subtitle = "Le comédien bidouilleur", - img = "cedric.jpg", - description = "Blabla" -) }} -{{ team_box( - title = "Pascal Engélibert", - place = "Bordeaux", - subtitle = "Le bricoleur", - img = "tuxmain.jpg", - description = "Blabla" -) }} -{{ team_box( - title = "Tobias Ollive", - place = "Cambrai", - subtitle = "Le monocycliste", - img = "tobias.jpg", - description = "Blabla" -) }} diff --git a/sass/css/base.scss b/sass/css/base.scss index 802b178..1a3ac7d 100644 --- a/sass/css/base.scss +++ b/sass/css/base.scss @@ -1,16 +1,8 @@ -@import "defs"; - -@import "footer"; -@import "header"; -@import "process"; -@import "services"; -@import "team"; - #dev-warning { position: fixed; top: 48px; left: 0; - width: 240px; + width: 256px; background-color: #fa0; border-bottom: 4px dashed #000; border-right: 4px dashed #000; @@ -21,27 +13,32 @@ font-size: 20px; } +@font-face { + font-family: Amatic; + src: url("/fonts/AmaticSC-Bold.woff2"); +} + +@font-face { + font-family: LunaSans; + src: url("/fonts/LunaSans-Regular.ttf"); +} + html, body { margin: 0; padding: 0; font-family: LunaSans; } +@import "header"; +@import "footer"; +@import "services"; +@import "process"; + main { width: 100%; - font-size: 18px; - min-height: calc(100vh - 155px); -} - -main.center { text-align: center; } -main.narrower { - max-width: 900px; - margin: auto; -} - a, a:visited { text-decoration: none; } diff --git a/sass/css/defs.scss b/sass/css/defs.scss deleted file mode 100644 index 16b5411..0000000 --- a/sass/css/defs.scss +++ /dev/null @@ -1,12 +0,0 @@ -$blue: #0294d9; -$violet: #ac44ff; - -@font-face { - font-family: Amatic; - src: url("/fonts/AmaticSC-Bold.woff2"); -} - -@font-face { - font-family: LunaSans; - src: url("/fonts/LunaSans-Regular.ttf"); -} diff --git a/sass/css/footer.scss b/sass/css/footer.scss index 22da924..5bbac6c 100644 --- a/sass/css/footer.scss +++ b/sass/css/footer.scss @@ -1,8 +1,6 @@ -@import "defs"; - footer { margin-top: 32px; - background: linear-gradient(0.25turn, $blue, $violet); + background: linear-gradient(0.25turn, #0294d9, #ac44ff); color: #fff; font-size: 18px; } diff --git a/sass/css/header.scss b/sass/css/header.scss index 1a78b2a..9da899e 100644 --- a/sass/css/header.scss +++ b/sass/css/header.scss @@ -1,5 +1,3 @@ -@import "defs"; - header { height: 48px; max-width: 1100px; @@ -30,5 +28,5 @@ header { } #header-menu a:hover, #header-menu a:focus { - text-shadow: 1px 2px 1px $violet; + text-shadow: 1px 2px 1px #ac44ff; } diff --git a/sass/css/process.scss b/sass/css/process.scss index f3ca9ad..c1b8c64 100644 --- a/sass/css/process.scss +++ b/sass/css/process.scss @@ -1,9 +1,7 @@ -@import "defs"; - .process-title { font-family: Amatic; font-size: 42px; - background: linear-gradient(0.25turn, $blue, $violet); + background: linear-gradient(0.25turn, #0294d9, #ac44ff); color: #fff; margin-top: 16px; margin-bottom: 16px; @@ -28,7 +26,7 @@ width: 64px; height: 64px; font-size: 48px; - background: linear-gradient(-0.125turn, $blue, $violet); + background: linear-gradient(-0.125turn, #0294d9, #ac44ff); color: #fff; border-radius: 32px; } diff --git a/sass/css/services.scss b/sass/css/services.scss index 3dd71dd..e2b3a69 100644 --- a/sass/css/services.scss +++ b/sass/css/services.scss @@ -1,18 +1,16 @@ -@import "defs"; - .need_services { margin-top: 16px; display: flex; align-items: stretch; justify-content: center; - border-right: 32px solid $violet; + border-right: 32px solid #ac44ff; } .need_box { flex: 38%; font-family: Amatic; font-size: 42px; - background: linear-gradient(0.25turn, $blue, $violet); + background: linear-gradient(0.25turn, #0294d9, #ac44ff); color: #fff; display: flex; flex-direction: column; @@ -54,7 +52,7 @@ } .service_box-link:hover, .service_box-link:focus { - text-shadow: 1px 2px 1px $violet; + text-shadow: 1px 2px 1px #ac44ff; } .service_box-title { diff --git a/sass/css/team.scss b/sass/css/team.scss deleted file mode 100644 index ab04a98..0000000 --- a/sass/css/team.scss +++ /dev/null @@ -1,16 +0,0 @@ -@import "defs"; - -.team_box { - float: left; - margin: 16px; -} - -.team_box-img { - // 70% ~= 1/sqrt(2) - mask-image: radial-gradient(circle, #000 69%, transparent 70%); - width: 160px; -} - -.team_box-subtitle { - color: $blue; -} diff --git a/static/img/ethicit-mini.png b/static/img/ethicit-mini.png deleted file mode 100644 index 6e4773b..0000000 Binary files a/static/img/ethicit-mini.png and /dev/null differ diff --git a/static/img/foopgp-mini.png b/static/img/foopgp-mini.png deleted file mode 100644 index 2c9fe69..0000000 Binary files a/static/img/foopgp-mini.png and /dev/null differ diff --git a/static/img/immae-mini.png b/static/img/immae-mini.png deleted file mode 100644 index 8c94f2a..0000000 Binary files a/static/img/immae-mini.png and /dev/null differ diff --git a/static/img/librecours-mini.png b/static/img/librecours-mini.png deleted file mode 100644 index 6608ba1..0000000 Binary files a/static/img/librecours-mini.png and /dev/null differ diff --git a/static/img/oasis21.png b/static/img/oasis21.png deleted file mode 100644 index 3b31614..0000000 Binary files a/static/img/oasis21.png and /dev/null differ diff --git a/static/img/p2plegal-mini.png b/static/img/p2plegal-mini.png deleted file mode 100644 index 2feee26..0000000 Binary files a/static/img/p2plegal-mini.png and /dev/null differ diff --git a/static/img/pccom-mini.png b/static/img/pccom-mini.png deleted file mode 100644 index 1a23c71..0000000 Binary files a/static/img/pccom-mini.png and /dev/null differ diff --git a/static/img/team/cedric.jpg b/static/img/team/cedric.jpg deleted file mode 100644 index babb2e2..0000000 Binary files a/static/img/team/cedric.jpg and /dev/null differ diff --git a/static/img/team/ethicit.jpg b/static/img/team/ethicit.jpg deleted file mode 100644 index 6126bba..0000000 Binary files a/static/img/team/ethicit.jpg and /dev/null differ diff --git a/static/img/team/francis-drubigny.jpg b/static/img/team/francis-drubigny.jpg deleted file mode 100644 index 7e5ed05..0000000 Binary files a/static/img/team/francis-drubigny.jpg and /dev/null differ diff --git a/static/img/team/ismael.jpg b/static/img/team/ismael.jpg deleted file mode 100644 index fdbef13..0000000 Binary files a/static/img/team/ismael.jpg and /dev/null differ diff --git a/static/img/team/jjb.png b/static/img/team/jjb.png deleted file mode 100644 index fbeaea6..0000000 Binary files a/static/img/team/jjb.png and /dev/null differ diff --git a/static/img/team/mathilde.jpg b/static/img/team/mathilde.jpg deleted file mode 100644 index 9a608e2..0000000 Binary files a/static/img/team/mathilde.jpg and /dev/null differ diff --git a/static/img/team/philippe.png b/static/img/team/philippe.png deleted file mode 100644 index 796ef3f..0000000 Binary files a/static/img/team/philippe.png and /dev/null differ diff --git a/static/img/team/poka.jpg b/static/img/team/poka.jpg deleted file mode 100644 index 0035214..0000000 Binary files a/static/img/team/poka.jpg and /dev/null differ diff --git a/static/img/team/thibaut-parent.png b/static/img/team/thibaut-parent.png deleted file mode 100644 index e8e762b..0000000 Binary files a/static/img/team/thibaut-parent.png and /dev/null differ diff --git a/static/img/team/tobias.jpg b/static/img/team/tobias.jpg deleted file mode 100644 index 566e666..0000000 Binary files a/static/img/team/tobias.jpg and /dev/null differ diff --git a/static/img/team/tuxmain.jpg b/static/img/team/tuxmain.jpg deleted file mode 100644 index c1bc4c2..0000000 Binary files a/static/img/team/tuxmain.jpg and /dev/null differ diff --git a/static/img/team/vincent.jpg b/static/img/team/vincent.jpg deleted file mode 100644 index 329ba07..0000000 Binary files a/static/img/team/vincent.jpg and /dev/null differ diff --git a/templates/base.html b/templates/base.html index 9d9ea18..7cef753 100644 --- a/templates/base.html +++ b/templates/base.html @@ -45,7 +45,7 @@