diff options
author | Aeddis Desauw <aeddis@deuxfleurs.fr> | 2024-05-07 19:56:27 +0200 |
---|---|---|
committer | Aeddis Desauw <aeddis@deuxfleurs.fr> | 2024-05-07 21:09:55 +0200 |
commit | b3725ac2ac548a99e4e70c4ee39ab9d05205a62a (patch) | |
tree | 29757009c83062aace56e768da0f2d9904c3ef70 | |
parent | 1c9ff174cf10893162e40e2ec7f6b3f034b88fdc (diff) | |
download | site-b3725ac2ac548a99e4e70c4ee39ab9d05205a62a.tar.gz site-b3725ac2ac548a99e4e70c4ee39ab9d05205a62a.zip |
add script to generate ascii calendar
-rw-r--r-- | script/README.md | 7 | ||||
-rw-r--r-- | script/calendar_generator.py | 20 | ||||
-rw-r--r-- | script/calendar_generator/.gitignore | 71 | ||||
-rw-r--r-- | script/calendar_generator/Cargo.lock | 290 | ||||
-rw-r--r-- | script/calendar_generator/Cargo.toml | 9 | ||||
-rw-r--r-- | script/calendar_generator/src/main.rs | 129 | ||||
-rw-r--r-- | static/index.html | 1400 |
7 files changed, 507 insertions, 1419 deletions
diff --git a/script/README.md b/script/README.md index e69de29..f178d62 100644 --- a/script/README.md +++ b/script/README.md @@ -0,0 +1,7 @@ +# Scripts + +## Calendar Generator + +A rust module to generate calendar in ascii +Usage : +`cargo run MM-YYYY` diff --git a/script/calendar_generator.py b/script/calendar_generator.py deleted file mode 100644 index 1f8e11c..0000000 --- a/script/calendar_generator.py +++ /dev/null @@ -1,20 +0,0 @@ -""" -Module to generate the Ascii art version of a calendar -""" -import sys - -class Calendar: - __name = "" - __first_day= "" - __nb_day= 0 - - def get_day(day : int): - pass - - def generate_ascii_calendar(cal): - pass - -if __name__ == "__main__": - # get the month with format MM-YYYY from argv - # print the ascii of thus month - pass diff --git a/script/calendar_generator/.gitignore b/script/calendar_generator/.gitignore new file mode 100644 index 0000000..aa324bd --- /dev/null +++ b/script/calendar_generator/.gitignore @@ -0,0 +1,71 @@ +# Created by https://www.toptal.com/developers/gitignore/api/rust,emacs +# Edit at https://www.toptal.com/developers/gitignore?templates=rust,emacs + +### Emacs ### +# -*- mode: gitignore; -*- +*~ +\#*\# +/.emacs.desktop +/.emacs.desktop.lock +*.elc +auto-save-list +tramp +.\#* + +# Org-mode +.org-id-locations +*_archive + +# flymake-mode +*_flymake.* + +# eshell files +/eshell/history +/eshell/lastdir + +# elpa packages +/elpa/ + +# reftex files +*.rel + +# AUCTeX auto folder +/auto/ + +# cask packages +.cask/ +dist/ + +# Flycheck +flycheck_*.el + +# server auth directory +/server/ + +# projectiles files +.projectile + +# directory configuration +.dir-locals.el + +# network security +/network-security.data + + +### Rust ### +# Generated by Cargo +# will have compiled files and executables +debug/ +target/ + +# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries +# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html +Cargo.lock + +# These are backup files generated by rustfmt +**/*.rs.bk + +# MSVC Windows builds of rustc generate these, which store debugging information +*.pdb + +# End of https://www.toptal.com/developers/gitignore/api/rust,emacs diff --git a/script/calendar_generator/Cargo.lock b/script/calendar_generator/Cargo.lock new file mode 100644 index 0000000..199693b --- /dev/null +++ b/script/calendar_generator/Cargo.lock @@ -0,0 +1,290 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "android-tzdata" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" + +[[package]] +name = "android_system_properties" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" +dependencies = [ + "libc", +] + +[[package]] +name = "autocfg" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0" + +[[package]] +name = "bumpalo" +version = "3.16.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" + +[[package]] +name = "calendar_generator" +version = "0.1.0" +dependencies = [ + "chrono", +] + +[[package]] +name = "cc" +version = "1.0.97" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "099a5357d84c4c61eb35fc8eafa9a79a902c2f76911e5747ced4e032edd8d9b4" + +[[package]] +name = "cfg-if" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" + +[[package]] +name = "chrono" +version = "0.4.38" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401" +dependencies = [ + "android-tzdata", + "iana-time-zone", + "js-sys", + "num-traits", + "wasm-bindgen", + "windows-targets", +] + +[[package]] +name = "core-foundation-sys" +version = "0.8.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" + +[[package]] +name = "iana-time-zone" +version = "0.1.60" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141" +dependencies = [ + "android_system_properties", + "core-foundation-sys", + "iana-time-zone-haiku", + "js-sys", + "wasm-bindgen", + "windows-core", +] + +[[package]] +name = "iana-time-zone-haiku" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" +dependencies = [ + "cc", +] + +[[package]] +name = "js-sys" +version = "0.3.69" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d" +dependencies = [ + "wasm-bindgen", +] + +[[package]] +name = "libc" +version = "0.2.154" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ae743338b92ff9146ce83992f766a31066a91a8c84a45e0e9f21e7cf6de6d346" + +[[package]] +name = "log" +version = "0.4.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c" + +[[package]] +name = "num-traits" +version = "0.2.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" +dependencies = [ + "autocfg", +] + +[[package]] +name = "once_cell" +version = "1.19.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" + +[[package]] +name = "proc-macro2" +version = "1.0.82" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ad3d49ab951a01fbaafe34f2ec74122942fe18a3f9814c3268f1bb72042131b" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "quote" +version = "1.0.36" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7" +dependencies = [ + "proc-macro2", +] + +[[package]] +name = "syn" +version = "2.0.61" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c993ed8ccba56ae856363b1845da7266a7cb78e1d146c8a32d54b45a8b831fc9" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "unicode-ident" +version = "1.0.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" + +[[package]] +name = "wasm-bindgen" +version = "0.2.92" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8" +dependencies = [ + "cfg-if", + "wasm-bindgen-macro", +] + +[[package]] +name = "wasm-bindgen-backend" +version = "0.2.92" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da" +dependencies = [ + "bumpalo", + "log", + "once_cell", + "proc-macro2", + "quote", + "syn", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-macro" +version = "0.2.92" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726" +dependencies = [ + "quote", + "wasm-bindgen-macro-support", +] + +[[package]] +name = "wasm-bindgen-macro-support" +version = "0.2.92" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7" +dependencies = [ + "proc-macro2", + "quote", + "syn", + "wasm-bindgen-backend", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-shared" +version = "0.2.92" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96" + +[[package]] +name = "windows-core" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9" +dependencies = [ + "windows-targets", +] + +[[package]] +name = "windows-targets" +version = "0.52.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6f0713a46559409d202e70e28227288446bf7841d3211583a4b53e3f6d96e7eb" +dependencies = [ + "windows_aarch64_gnullvm", + "windows_aarch64_msvc", + "windows_i686_gnu", + "windows_i686_gnullvm", + "windows_i686_msvc", + "windows_x86_64_gnu", + "windows_x86_64_gnullvm", + "windows_x86_64_msvc", +] + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.52.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7088eed71e8b8dda258ecc8bac5fb1153c5cffaf2578fc8ff5d61e23578d3263" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.52.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9985fd1504e250c615ca5f281c3f7a6da76213ebd5ccc9561496568a2752afb6" + +[[package]] +name = "windows_i686_gnu" +version = "0.52.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "88ba073cf16d5372720ec942a8ccbf61626074c6d4dd2e745299726ce8b89670" + +[[package]] +name = "windows_i686_gnullvm" +version = "0.52.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "87f4261229030a858f36b459e748ae97545d6f1ec60e5e0d6a3d32e0dc232ee9" + +[[package]] +name = "windows_i686_msvc" +version = "0.52.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "db3c2bf3d13d5b658be73463284eaf12830ac9a26a90c717b7f771dfe97487bf" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.52.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4e4246f76bdeff09eb48875a0fd3e2af6aada79d409d33011886d3e1581517d9" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.52.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "852298e482cd67c356ddd9570386e2862b5673c85bd5f88df9ab6802b334c596" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.52.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bec47e5bfd1bff0eeaf6d8b485cc1074891a197ab4225d504cb7a1ab88b02bf0" diff --git a/script/calendar_generator/Cargo.toml b/script/calendar_generator/Cargo.toml new file mode 100644 index 0000000..3665816 --- /dev/null +++ b/script/calendar_generator/Cargo.toml @@ -0,0 +1,9 @@ +[package] +name = "calendar_generator" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +chrono = "0.4.38" diff --git a/script/calendar_generator/src/main.rs b/script/calendar_generator/src/main.rs new file mode 100644 index 0000000..4acb2c6 --- /dev/null +++ b/script/calendar_generator/src/main.rs @@ -0,0 +1,129 @@ +use chrono::prelude::*; +use std::env; +use chrono::NaiveDate; + +fn get_month( num :i8) -> & 'static str { + match num { + 1 => return "JANVIER", + 2 => return "FEVRIER", + 3 => return "MARS", + 4 => return "AVRIL", + 5 => return "MAI", + 6 => return "JUIN", + 7 => return "JUILLET", + 8 => return "AOUT", + 9 => return "SEPTEMBRE", + 10 => return "OCTOBRE", + 11 => return "NOVEMBRE", + 12 => return "DECEMBRE", + _=> return "", + } +} + +fn nb_empty_space_before(day : Weekday) -> i8{ + match day { + Weekday::Mon => return 0, + Weekday::Tue => return 1, + Weekday::Wed => return 2, + Weekday::Thu => return 3, + Weekday::Fri => return 4, + Weekday::Sat => return 5, + Weekday::Sun => return 6, + } +} + + +fn get_pretty_day(day_nb : i8) -> String { + if day_nb < 10 { + return "0".to_owned() + &day_nb.to_string(); + } + return day_nb.to_string(); +} + + +fn get_ascii_calendar(date : NaiveDate) -> String { + + let binding = date.to_string(); + let split_date = binding.split("-").collect::<Vec<_>>(); + let month = split_date[1]; + let year = split_date[0]; + let month_name = get_month(month.parse::<i8>().expect("REASON")); + let space = 38 - "CALENDRIER".len() - 1 - month_name.len() - 1 - 4; + + let mut calendar = String::from(".——————————————————————————————————————.\n"); + calendar += "|"; + for _ in 0..(space/2){ + calendar += " "; + } + calendar += &("CALENDRIER".to_owned() + " " + month_name + " " + year); + for _ in 0..(space/2 + (space % 2)){ + calendar = calendar.to_string() + " "; + } + calendar += "|\n"; + calendar += "|——————————————————————————————————————|\n"; + + + + let mut top_line = String::from("| "); + let mut middle_line = String::from("| |"); + + let base_date = NaiveDate::from_ymd_opt(year.parse::<i32>().expect("REASON"), + 1 + month.parse::<u32>().expect("REASON"), + 1).unwrap(); + + // fill empty spaces + let nb_space = nb_empty_space_before(base_date.weekday()); + + for _ in 0..nb_space{ + top_line += "———— "; + middle_line += " |" + } + + let mut day_nb = 1; + for day in base_date.iter_days().take(50){ + if day.month() != base_date.month(){ + // complete to the end of the week + top_line += "———— "; + middle_line += " |"; + if day.weekday() == Weekday::Sun { + calendar += &(top_line.clone() + " |\n"); + calendar += &(middle_line .clone() + &(" |\n")); + calendar += &(top_line.clone() + " |\n"); + break; + } + } + else { + if day.weekday() == Weekday::Sun { + calendar += &(top_line.clone() + "———— |\n"); + calendar += &(middle_line .clone() + &(" ".to_owned() + &get_pretty_day(day_nb) + " | |\n")); + top_line = String::from("| "); + middle_line = String::from("| |"); + } + else { + top_line += "———— "; + middle_line += &(" ".to_owned() + &get_pretty_day(day_nb) + " |"); + } + } + day_nb += 1 + } + calendar += "|______________________________________|\n"; + return calendar; +} + + + +fn main() { + let args: Vec<_> = env::args().collect(); + if args.len() <= 1 + { + println!("At least one month must be specified"); + return; + } + + for month in env::args(){ + match NaiveDate::parse_from_str(&("01-".to_owned() + &month), "%d-%m-%Y") { + Ok(date) => println!("{}", get_ascii_calendar(date)), + Err(error) => println!("could not parse .{}. due to: {}", month, error), + } + } +} diff --git a/static/index.html b/static/index.html index 3726ec3..f8d7dc9 100644 --- a/static/index.html +++ b/static/index.html @@ -1,1399 +1 @@ -<!DOCTYPE html>
-<!--
- Un site web imaginé, planté et arrosé avec patience et amour par Esther Bouquet (estherbouquet.com) et Quentin Dufour (quentin.dufour.io)
- Illustrations en ascii par Esther Bouquet.
- Script d'animation par Matt Jacobson.
- Illustration des valeurs par Ronce
--->
-<html lang="fr">
-<head>
- <meta http-equiv="Content-Security-Policy" content="default-src 'none'; img-src 'self'; script-src 'self'; style-src 'self'">
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1, height=device-height, minimum-scale=1.0">
- <meta name="color-scheme" content="dark">
- <meta name="color-scheme" content="light">
-
- <!-- balises meta basiques pour moteurs de recherche -->
- <meta name="description" content="Association qui œuvre pour un internet convivial en utilisant des infrastructures et outils sobres.">
- <meta name="keywords" content="association, logiciels libres, alternative, serveurs">
-
- <!-- balises meta utilisées pour partage sur réseaux sociaux afin d'être sûr.es que ce soit ces infos qui soient récupérées -->
- <meta property="og:title" content="Deuxfleurs : fabriquons un internet convivial">
- <meta property="og:type" content="website">
- <meta property="og:image" content="https://deuxfleurs.fr/img/deuxfleurs-common-ratio.jpg">
- <meta property="og:url" content="https://deuxfleurs.fr/">
- <meta property="og:description" content="Association qui œuvre en utilisant ses propres infrastructures, des outils sobres et des valeurs fortes.">
-
- <!-- balises meta spécifiques à twitter cf Summary Card -->
- <meta name="twitter:card" content="summary">
- <meta name="twitter:title" content="Deuxfleurs : fabriquons un internet convivial">
- <meta name="twitter:description" content="Association qui œuvre en utilisant ses propres infrastructures, des outils sobres et des valeurs fortes.">
- <meta name="twitter:image" content="https://deuxfleurs.fr/img/deuxfleurs-square.jpg"> <!-- ratio 1:1 | format carré nécessairement en jpg, png, gif ou webp. -->
- <meta name="twitter:image:alt" content="Parterre de fleurs différentes dessinées en ascii art">
-
- <!-- balises meta spécifiques à twitter cf Summary Card with large image -->
- <meta name="twitter:card" content="summary_large_image">
- <meta name="twitter:image" content="https://deuxfleurs.fr/img/deuxfleurs-rect.jpg"> <!-- ratio 2:1 -->
-
- <title>Deuxfleurs : fabriquons un internet convivial</title>
-
- <!-- liens vers style css et favicon-->
- <link rel="stylesheet" type="text/css" href="css/layout.css">
- <link rel="stylesheet" type="text/css" href="css/home.css">
- <link rel="shortcut icon" href="./img/favicon.ico" type="image/x-icon">
-</head>
-
-<body>
-
- <nav role="navigation" aria-label="menu d'accès" id="menu">
- <ul aria-label="menu principal" role="menubar" aria-orientation="vertical">
- <li role="none">
- <a href="https://guichet.deuxfleurs.fr/" role="menuitem" aria-label="compte" class="icone">
- <pre aria-hidden="true">
- (COMPTE)
- !!___/\
- |___/__\
- || || .|
- ||_||__| </pre>
- <pre class="img_top" aria-hidden="true">
- ( ))) )
- !!___/\
- |___/__\
- ||*|| .|
- ||_||__| </pre>
- </a>
- </li>
- <li role="none">
- <a href="https://guide.deuxfleurs.fr/" role="menuitem" aria-label="wiki" class="icone">
- <pre aria-hidden="true">
- ((((((()
- |------|
- | WIKI |
- |------|
- |______| </pre>
- <pre class="img_top" aria-hidden="true">
- ((((((()
- /-----/|
- /-----/ |
-/_____/ |
- |______| </pre>
- </a>
- </li>
- <li role="none">
- <a href="https://plume.deuxfleurs.fr/" role="menuitem" aria-label="blog" class="icone">
- <pre aria-hidden="true">
- |¨¨¨¨|
- |BLOG|
- (|____|)
- |o == .|
- \______/ </pre>
- <pre class="img_top" aria-hidden="true">
- |~~ |
- | ~~ |
- (|____|)
- |o == .|
- \______/ </pre>
- </a>
- </li>
- </ul>
- </nav>
-
- <div id="container">
-
- <header>
- <h1 id="deuxfleurs"><span role="img" aria-label="2 emojis fleur blanche">💮💮 </span>deuxfleurs</h1>
- </header>
-
- <main aria-label="contenu de la page web">
- <div id="jardin">
- <div id="illustration-accueil" class="noscroll" role="img" aria-label="deux fleurs dessinées en ascii animées">
- <!-- séquences de l'animation qui est lancée grâce à l'avant avant dernière ligne -->
- <pre class="center">
- '\ ; /'
- ·`.;.;.`·
- ·— · · —·
- ·`';.;'`·
- '/ ; \'
- .-.
- .( ; ;
- .-. (_.():')
- _( ' ; /(' ; .)
- ( `(·)` ; ``-'
- ',_' `·,'
- `-`\| +---------------------+
- . /) | B i e n v e n u e |
- (\|/ +---------------------+
- | | |
-.,.,\/,}\|//,,, ;/,,\/ | , \,,,;/. ;.;, |,,,,;,;..
- </pre>
- <pre class="center hide">
- '\ ; /'
- ·`.;.;.`·
- ·— · · —·
- ·`';.;'`·
- '/ ; \'
- .-.
- .( ; ;
- .-. (_.():')
- _( ' ; /(' ; .)
- ( `(·)` ; ``-'
- ',_' `·,'
- `-`\| +---------------------+
- . /) | B i e n v e n u e |
- (\|/ +---------------------+
- | | |
-.,.,\/,}\|//,,, ;/,,\/ | , \,,,;/. ;.;, |,,,,;,;..
- </pre>
- <pre class="center hide">
- '\ ; /'
- ·`.;.;.`·
- ·— · · —·
- ·`';.;'`·
- '/ ; \'
- .-.
- .( ; ;
- .-. (_.():')
- _( ' ; /(' ; .)
- ( `(·)` ; ``-'
- ',_' `·,'
- `-`\| +---------------------+
- . /) | B i e n v e n u e |
- (\|/ +---------------------+
- | | |
-.,.,\/,}\|//,,, ;/,,\/ | , \,,,;/. ;.;, |,,,,;,;..
- </pre>
- <pre class="center hide">
--., '\ ; /'
- ';.) ·`.;.;.`·
- , ) ·— · · —·
-) ) ' ·`';.;'`·
- '/ ; \'
- .-.
- .( ; ;
- .-. (_.():')
- _( ' ; /(' ; .)
- ( `(·)` ; ``-'
- ',_' `·,'
- `-`\| +---------------------+
- . /) | B i e n v e n u e |
- (\|/ +---------------------+
- | | |
-.,.,\/,}\|//,,, ;/,,\/ | , \,,,;/. ;.;, |,,,,;,;..
- </pre>
- <pre class="center hide">
- - -., '\ ; /'
- ( ' ';.) ·`.;.;.`·
-('. ( , ) ·— · · —·
- (.';.) ) ' ·`';.;'`·
- '/ ; \'
- .-.
- .( ; ;
- .-. (_.():')
- _( ' ; /(' ; .)
- ( `(·)` ; ``-'
- ',_' `·,'
- `-`\| +---------------------+
- . /) | B i e n v e n u e |
- (\|/ +---------------------+
- | | |
-.,.,\/,}\|//,,, ;/,,\/ | , \,,,;/. ;.;, |,,,,;,;..
- </pre>
- <pre class="center hide">
- - -., '\ ; /'
- ( ' ';.) ·`.;.;.`·
- ('. ( , ) ·— · · —·
- (.';.) ) ' ·`';.;'`·
- '/ ; \'
- .-.
- .( ; ;
- .-. (_.():')
- _( ' ; /(' ; .)
- ( `(·)` ; ``-'
- ',_' `·,'
- `-`\| +---------------------+
- . /) | B i e n v e n u e |
- (\|/ +---------------------+
- | | |
-.,.,\/,}\|//,,, ;/,,\/ | , \,,,;/. ;.;, |,,,,;,;..
- </pre>
- <pre class="center hide">
- - -., '\ ; /'
- ( ' ';.) ·`.;.;.`·
- ('. ( , ) ·— · · —·
- (.';.) ) ' ·`';.;'`·
- '/ ; \'
- .-.
- .( ; ;
- .-. (_.():')
- _( ' ; /(' ; .)
- ( `(·)` ; ``-'
- ',_' `·,'
- `-`\| +---------------------+
- . /) | B i e n v e n u e |
- (\|/ +---------------------+
- | | |
-.,.,\/,}\|//,,, ;/,,\/ | , \,,,;/. ;.;, |,,,,;,;..
- </pre>
- <pre class="center hide">
- - -., '\ ; /'
- ( ' ';.) ·`.;.;.`·
- ('. ( , ) ·— · · —·
- (.';.) ) ' ·`';.;'`·
- . ; . '/ ; \'
- .-.,
- .( ; ;
- .-. (_.():')
- _( ' ; /(' ; .)
- ( `(·)` ; ``-'
- ',_' `·,'
- `-`\| +---------------------+
- . /) | B i e n v e n u e |
- (\|/ +---------------------+
- | | |
-.,.,\/,}\|//,,, ;/,,\/ | , \,,,;/. ;.;, |,,,,;,;..
- </pre>
- <pre class="center hide">
- - -., '\ ; /'
- ( ' ';.) ·`.;.;.`·
- ('. ( , ) ·— · · —·
- (.';.) ) ' ·`';.;'`·
- | '/ ; \'
- .-.` ;
- .( ; ; , |
- .-. (_.():')
- _( ' ; /(' ; .) .
- ( `(·)` ; ``-' |
- ',_' `·,' . ;
- `-`\| , +---------------------+
- . /) | B i e n v e n u e |
- (\|/ . +---------------------+
- | | |
-.,.,\/,}\|//,,, ;/,,\/ | , \,,,;/. ;.;, |,,,,;,;..
- </pre>
- <pre class="center hide">
- - -., '\ ; /'
- ( ' ';.) ·`.;.;.`·
- ('. ( , ) ·— · · —·
- (.';.) ) ' ·`';.;'`·
- ; ` '/ ; \'
- ,.-. | |
- .( ; ; . ;
- .-. (_.():') |
- _( ' ; /(' ; .) ;
- ( `(·)` ; ``-' | .
- ',_' `·,' . | |
- `-`\| ` +---------------------+
- . /) , | B i e n v e n u e |
- (\|/ '; +---------------------+
- | . ; | |
-.,.,\/,}\|//,,, ;/,,\/ | , \,,,;/. ;.;, |,,,,;,;..
- </pre>
- <pre class="center hide">
- - -., '\ ; /'
- ( ' ';.) ·`.;.;.`·
- ('. ( , ) ·— · · —·
- (.';.) ) ' ·`';.;'`·
- , '/ ; \'
- .-. "
- .( ; ; :
- .-. (_.():')
- _( ' ; /(' ; .) ` ,
- ( `(·)` ; ``-' | `
- ',_' `·,' ; ,
- `-`\| , . | +---------------------+
- . /) , | B i e n v e n u e |
- (\|/ | +---------------------+
- | | ; , ,| |
-.,.,\/,}\|//,,,.;/,,\/; | , \,,,;/. ;.;, |,,,,;,;..
- </pre>
- <pre class="center hide">
- - -., '\ ; /'
- ( ' ';.) ·`.;.;.`·
- ('. ( , ) ·— · · —·
- (.';.) ) ' ·`';.;'`·
- '/ ; \'
- .-.
- .( ; ; ,
- .-. (_.():') ;
- _( ' ; /(' ; .) :
- ( `(·)` ; ``-' " ;
- ',_' `·,' ' `
- `-`\| ` ,+---------------------+
- . /) , | | B i e n v e n u e |
- (\|/ , ; +---------------------+
- | , . |. | |
-.,.,\/,}\|//,,, ;/,,\/ :| , \,,,;/. ;.;, |,,,,;,;..
- </pre>
- <pre class="center hide">
- - -., '\ ; /'
- ( ' ';.) ·`.;.;.`·
- ('. ( , ) ·— · · —·
- (.';.) ) ' ·`';.;'`·
- '/ ; \'
- .-.
- .( ; ;
- .-. (_.():')
- _( ' ; /(' ; .)
- ( `(·)` ; ``-'
- ',_' `·,' ,
- `-`\| " ; +---------------------+
- . /) ; | B i e n v e n u e |
- (\|/ ' +---------------------+
- | ` ` | |
-.,.,\/,}\|//,,, ;/,,\/: | , \,,,;/. ;.;, |,,,,;,;..
- </pre>
- <pre class="center hide">
- - -., '\ ; /'
- ( ' ';.) ·`.;.;.`·
- ('. ( , ) ·— · · —·
- (.';.) ) ' ·`';.;'`·
- '/ ; \'
- .-.
- .( ; ;
- .-. (_.():')
- _( ' ; /(' ; .)
- ( `(·)` ; ``-'
- ',_' `·,'
- `-`\| +---------------------+
- . /) | B i e n v e n u e |
- (\|/ +---------------------+
- | | |
-.,.,\/,}\|//,,, ;/,,\/ | , \,,,;/. ;.;, |,,,,;,;..
- </pre>
- <pre class="center hide">
- - -., '\ ; /'
- ( ' ';.) ·`.;.;.`·
- ('. ( , ) ·— · · —·
- (.';.) ) ' ·`';.;'`·
- '/ ; \'
- .-.
- .( ; ;
- .-. (_.():')
- _( ' ; /(' ; .)
- ( `(·)` ; ``-'
- ',_' `·,'
- `-`\| +---------------------+
- . /) | B i e n v e n u e |
- (\|/ +---------------------+
- | | |
-.,.,\/,}\|//,,, ;/,,\/ | , \,,,;/. ;.;, |,,,,;,;..
- </pre>
- <pre class="center hide">
- - -., '\ ; /'
- ( ' ';.) ·`.;.;.`·
- ('. ( , ) ·— · · —·
- (.';.) ) ' ·`';.;'`·
- '/ ; \'
- .-.
- .( ; ;
- .-. (_.():')
- _( ' ; /(' ; .)
- ( `(·)` ; ``-'
- ',_' `·,'
- `-`\| +---------------------+
- . /) | B i e n v e n u e |
- (\|/ +---------------------+
- | | |
-.,.,\/,}\|//,,, ;/,,\/ | , \,,,;/. ;.;, |,,,,;,;..
- </pre>
- <pre class="center hide">
- - -., '\ ; /'
- ( ' ';.)`.;.;.`·
- ('. ( , )· · —·
- (.';.) ) '`';.;'`·
- '/ ; \'
- .-.
- .( ; ;
- .-. (_.():')
- _( ' ; /(' ; .)
- ( `(·)` ; ``-'
- ',_' `·,'
- `-`\| +---------------------+
- . /) | B i e n v e n u e |
- (\|/ +---------------------+
- | | |
-.,.,\/,}\|//,,, ;/,,\/ | , \,,,;/. ;.;, |,,,,;,;..
- </pre>
- <pre class="center hide">
- - -.,; /'
- ( ' ';.)`·
- ('. ( , )—·
- (.';.) ) '`·
- '/ ; \'
- .-.
- .( ; ;
- .-. (_.():')
- _( ' ; /(' ; .)
- ( `(·)` ; ``-'
- ',_' `·,'
- `-`\| +---------------------+
- . /) | B i e n v e n u e |
- (\|/ +---------------------+
- | | |
-.,.,\/,}\|//,,, ;/,,\/ | , \,,,;/. ;.;, |,,,,;,;..
- </pre>
- <pre class="center hide">
- '\ ;- -.,;
- ·`.( ' ';.
- ·—('. ( ,
- ·`'(.';.) )
- '/ ; \'
- .-.
- .( ; ;
- .-. (_.():')
- _( ' ; /(' ; .)
- ( `(·)` ; ``-'
- ',_' `·,'
- `-`\| +---------------------+
- . /) | B i e n v e n u e |
- (\|/ +---------------------+
- | | |
-.,.,\/,}\|//,,, ;/,,\/ | , \,,,;/. ;.;, |,,,,;,;..
- </pre>
- <pre class="center hide">
- '\ ; /' -
- ·`.;.;.`·(
- ·— · ·('. (
- ·`';.;'`·(.'
- '/ ; \'
- .-.
- .( ; ;
- .-. (_.():')
- _( ' ; /(' ; .)
- ( `(·)` ; ``-'
- ',_' `·,'
- `-`\| +---------------------+
- . /) | B i e n v e n u e |
- (\|/ +---------------------+
- | | |
-.,.,\/,}\|//,,, ;/,,\/ | , \,,,;/. ;.;, |,,,,;,;..
- </pre>
- <pre class="center hide">
- '\ ; /'
- ·`.;.;.`·
- ·— · · —·
- ·`';.;'`·
- '/ ; \'
- .-.
- .( ; ;
- .-. (_.():')
- _( ' ; /(' ; .)
- ( `(·)` ; ``-'
- ',_' `·,'
- `-`\| +---------------------+
- . /) | B i e n v e n u e |
- (\|/ +---------------------+
- | | |
-.,.,\/,}\|//,,, ;/,,\/ | , \,,,;/. ;.;, |,,,,;,;..
- </pre>
- </div>
- <p>Fabriquons un internet convivial ⤵</p>
- </div>
- <h2 id="infras">Avec nos propres infrastructures</h2>
- <div id="rennes" role="img" aria-label="illustration de trois serveurs informatiques rangés dans la bibliothèque d'un salon">
- <!--diode qui clignote ?-->
- <pre class="center">/¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨\
-| || || || |
-| || || || |
-| || || || |
-| ||_____________||_____________|| |
-| *——————————————————————————————* |
-| |
-| |
-| |
-|_____________________ ._________________________. |
-| ` |!"""""""""""|"""""""""""!| (\__ |
-| | || o |.-. _ _.-.|| :=))))-, |
-| | || || |_| |•| ||| (/ ' -; |
-| . . | ||"""""""""""||π| |·| |◦||| /, __/) |
-| | _._ |! || |*| |◦|-|!| .·((((=: |
-| |.' ` |! ________ || | |x|·| |!| ||| \) |
-|____________________ / / |||\\\\ - •| |"""""""""""|| / \ |
-| )| / |||________| | _ _ || / \ |
-|====================/ / |||\\\\ - o| || |_ |`|_ || | | |
-| / |||________| ||*| |_|M|*||| | | |
-|________________________/ |||\\\\ - •| || |O|-| |S||| \ / |
-|————————————————————————........|||________| ||P|¨|E|`| |||........':___.'.....|
-| //\\ !!———————————————————————!! """"" |
-| \\ |
-\_______________________________________________________________________________/</pre>
- <pre class="center hide">/¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨\
-| || || || |
-| || || || |
-| || || || |
-| ||_____________||_____________|| |
-| *——————————————————————————————* |
-| |
-| |
-| |
-|_____________________ ._________________________. |
-| ` |!"""""""""""|"""""""""""!| (\__ |
-| | || o |.-. _ _.-.|| :=))))-, |
-| | || || |_| |•| ||| (/ ' -; |
-| . . | ||"""""""""""||π| |·| |◦||| /, __/) |
-| | _._ |! || |*| |◦|-|!| .·((((=: |
-| |.' ` |! ________ || | |x|·| |!| ||| \) |
-|____________________ / / |||\\\\ - •| |"""""""""""|| / \ |
-| )| / |||________| | _ _ || / \ |
-|====================/ / |||\\\\ - •| || |_ |`|_ || | | |
-| / |||________| ||*| |_|M|*||| | | |
-|________________________/ |||\\\\ - o| || |O|-| |S||| \ / |
-|————————————————————————........|||________| ||P|¨|E|`| |||........':___.'.....|
-| //\\ !!———————————————————————!! """"" |
-| \\ |
-\_______________________________________________________________________________/</pre>
- <pre class="center hide">/¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨\
-| || || || |
-| || || || |
-| || || || |
-| ||_____________||_____________|| |
-| *——————————————————————————————* |
-| |
-| |
-| |
-|_____________________ ._________________________. |
-| ` |!"""""""""""|"""""""""""!| (\__ |
-| | || o |.-. _ _.-.|| :=))))-, |
-| | || || |_| |•| ||| (/ ' -; |
-| . . | ||"""""""""""||π| |·| |◦||| /, __/) |
-| | _._ |! || |*| |◦|-|!| .·((((=: |
-| |.' ` |! ________ || | |x|·| |!| ||| \) |
-|____________________ / / |||\\\\ - •| |"""""""""""|| / \ |
-| )| / |||________| | _ _ || / \ |
-|====================/ / |||\\\\ - o| || |_ |`|_ || | | |
-| / |||________| ||*| |_|M|*||| | | |
-|________________________/ |||\\\\ - o| || |O|-| |S||| \ / |
-|————————————————————————........|||________| ||P|¨|E|`| |||........':___.'.....|
-| //\\ !!———————————————————————!! """"" |
-| \\ |
-\_______________________________________________________________________________/</pre>
- <pre class="center hide">/¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨\
-| || || || |
-| || || || |
-| || || || |
-| ||_____________||_____________|| |
-| *——————————————————————————————* |
-| |
-| |
-| |
-|_____________________ ._________________________. |
-| ` |!"""""""""""|"""""""""""!| (\__ |
-| | || o |.-. _ _.-.|| :=))))-, |
-| | || || |_| |•| ||| (/ ' -; |
-| . . | ||"""""""""""||π| |·| |◦||| /, __/) |
-| | _._ |! || |*| |◦|-|!| .·((((=: |
-| |.' ` |! ________ || | |x|·| |!| ||| \) |
-|____________________ / / |||\\\\ - o| |"""""""""""|| / \ |
-| )| / |||________| | _ _ || / \ |
-|====================/ / |||\\\\ - •| || |_ |`|_ || | | |
-| / |||________| ||*| |_|M|*||| | | |
-|________________________/ |||\\\\ - •| || |O|-| |S||| \ / |
-|————————————————————————........|||________| ||P|¨|E|`| |||........':___.'.....|
-| //\\ !!———————————————————————!! """"" |
-| \\ |
-\_______________________________________________________________________________/</pre>
- <pre class="center hide">/¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨\
-| || || || |
-| || || || |
-| || || || |
-| ||_____________||_____________|| |
-| *——————————————————————————————* |
-| |
-| |
-| |
-|_____________________ ._________________________. |
-| ` |!"""""""""""|"""""""""""!| (\__ |
-| | || o |.-. _ _.-.|| :=))))-, |
-| | || || |_| |•| ||| (/ ' -; |
-| . . | ||"""""""""""||π| |·| |◦||| /, __/) |
-| | _._ |! || |*| |◦|-|!| .·((((=: |
-| |.' ` |! ________ || | |x|·| |!| ||| \) |
-|____________________ / / |||\\\\ - o| |"""""""""""|| / \ |
-| )| / |||________| | _ _ || / \ |
-|====================/ / |||\\\\ - o| || |_ |`|_ || | | |
-| / |||________| ||*| |_|M|*||| | | |
-|________________________/ |||\\\\ - o| || |O|-| |S||| \ / |
-|————————————————————————........|||________| ||P|¨|E|`| |||........':___.'.....|
-| //\\ !!———————————————————————!! """"" |
-| \\ |
-\_______________________________________________________________________________/</pre>
- <pre class="center hide">/¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨\
-| || || || |
-| || || || |
-| || || || |
-| ||_____________||_____________|| |
-| *——————————————————————————————* |
-| |
-| |
-| |
-|_____________________ ._________________________. |
-| ` |!"""""""""""|"""""""""""!| (\__ |
-| | || o |.-. _ _.-.|| :=))))-, |
-| | || || |_| |•| ||| (/ ' -; |
-| . . | ||"""""""""""||π| |·| |◦||| /, __/) |
-| | _._ |! || |*| |◦|-|!| .·((((=: |
-| |.' ` |! ________ || | |x|·| |!| ||| \) |
-|____________________ / / |||\\\\ - o| |"""""""""""|| / \ |
-| )| / |||________| | _ _ || / \ |
-|====================/ / |||\\\\ - •| || |_ |`|_ || | | |
-| / |||________| ||*| |_|M|*||| | | |
-|________________________/ |||\\\\ - o| || |O|-| |S||| \ / |
-|————————————————————————........|||________| ||P|¨|E|`| |||........':___.'.....|
-| //\\ !!———————————————————————!! """"" |
-| \\ |
-\_______________________________________________________________________________/</pre>
- </div>
- <div id="orsay" role="img" aria-label="illustration de trois serveurs informatiques rangés sur l'étagère d'un bureau">
- <pre class="center">/¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨\
-| |
-| |
-| |
-| ________ \./ |
-| _ |•- \\\\| \./ —:::— |
-| _|M|-._ _ .|________| —;;:— /.\ |
-| _|·|A|◦| | | |o- \\\\| : / |
-| |*| |T|-| | |_ |________|. (*´¨)\_/))`. |
-| | | |H| | |*| | |o- \\\\| \) ./.\) |
-| _____|_|_|_|_|_|_|_|____|________|________\__/___________ |
-| """"""""""""""""""""""""""""""""""""""""""""""""""""""""" |
-| _____ _____________________ _______________ |
-| . . |.———————————————————.| ——————————————— |
-| | | _____ || || |_|_|_|_|_|_|_| |
-| | | . . || || |_|_|_|_|_|x|_| |
-| ._____. | | || || |_|_|_|x|_|_|_| |
-| | | || || |_|_|_|_|_|_|_| |
-| ._____. |.———————————————————.| |_|_|_|_______| |
-| `—————————————————————' |
-| _________________/ \_________________ |
-| . ` /_____\ ` . |
-| .` ________________ ________ `. |
-| .` /________________\ \________. `. |
-\___________`_______________________________________________________`___________/</pre>
- <pre class="center hide">/¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨\
-| |
-| |
-| |
-| ________ \./ |
-| _ |o- \\\\| \./ —:::— |
-| _|M|-._ _ .|________| —;;:— /.\ |
-| _|·|A|◦| | | |•- \\\\| : / |
-| |*| |T|-| | |_ |________|. (*´¨)\_/))`. |
-| | | |H| | |*| | |o- \\\\| \) ./.\) |
-| _____|_|_|_|_|_|_|_|____|________|________\__/___________ |
-| """"""""""""""""""""""""""""""""""""""""""""""""""""""""" |
-| _____ _____________________ _______________ |
-| . . |.———————————————————.| ——————————————— |
-| | | _____ || || |_|_|_|_|_|_|_| |
-| | | . . || || |_|_|_|_|_|x|_| |
-| ._____. | | || || |_|_|_|x|_|_|_| |
-| | | || || |_|_|_|_|_|_|_| |
-| ._____. |.———————————————————.| |_|_|_|_______| |
-| `—————————————————————' |
-| _________________/ \_________________ |
-| . ` /_____\ ` . |
-| .` ________________ ________ `. |
-| .` /________________\ \________. `. |
-\___________`_______________________________________________________`___________/</pre>
- <pre class="center hide">/¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨\
-| |
-| |
-| |
-| ________ \./ |
-| _ |o- \\\\| \./ —:::— |
-| _|M|-._ _ .|________| —;;:— /.\ |
-| _|·|A|◦| | | |o- \\\\| : / |
-| |*| |T|-| | |_ |________|. (*´¨)\_/))`. |
-| | | |H| | |*| | |•- \\\\| \) ./.\) |
-| _____|_|_|_|_|_|_|_|____|________|________\__/___________ |
-| """"""""""""""""""""""""""""""""""""""""""""""""""""""""" |
-| _____ _____________________ _______________ |
-| . . |.———————————————————.| ——————————————— |
-| | | _____ || || |_|_|_|_|_|_|_| |
-| | | . . || || |_|_|_|_|_|x|_| |
-| ._____. | | || || |_|_|_|x|_|_|_| |
-| | | || || |_|_|_|_|_|_|_| |
-| ._____. |.———————————————————.| |_|_|_|_______| |
-| `—————————————————————' |
-| _________________/ \_________________ |
-| . ` /_____\ ` . |
-| .` ________________ ________ `. |
-| .` /________________\ \________. `. |
-\___________`_______________________________________________________`___________/</pre>
- </div>
- <p id="txt_infras" lang="fr">Nous fournissons des services numériques garantis "sans datacenter". À la place, nous utilisons moins d'une dizaine de vieux ordinateurs reconditionnés à nos domiciles qui peuvent fournir des services numériques à plusieurs dizaines de milliers de personnes. Actuellement ces ordinateurs sont situés à Orsay, Lille et Bruxelles. Nous avons également des machines à Suresnes pour les sauvegardes. <a href="https://guide.deuxfleurs.fr/infrastructures/">En savoir plus</a>. <br><br>Cette infrastructure atypique nous mène à développer de nouveaux logiciels libres. Si vous êtes dans la technique, vous pourriez être intéressé·e par <a href="https://garagehq.deuxfleurs.fr/">Garage</a>, <a href="https://bottin.eu">Bottin</a>, <a href="https://git.deuxfleurs.fr/lx/tricot">Tricot</a>, <a href="https://git.deuxfleurs.fr/Deuxfleurs/diplonat">Diplonat</a> et nos <a href="https://git.deuxfleurs.fr/Deuxfleurs">autres projets</a>.</p>
- <h2 id="outils">Avec nos services sobres</h2>
- <div id="ordinateur">
- <pre class="center" aria-hidden="true">
-
-
- _______________________________________________________________________
- /!¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨!\
- ||—————————————————————————————————————————————————————————————— — o x ||
- _ || ||
- _ / `\ _ || , ,, .;, ;., ||
- _ ( `'.\ /.'` ) || ;. ;., ;,.,. ||
- _ / `\ '_ .(())._.' || ,, ,;/. ;.;, ;, |,, ||
-( `'.\ /.'` ),`""`, '- || ,,,;, ' {.} ||
- '._.(())._.'-'/ \'-._) || .,:.,.,\/,}.;. ;.. , ||
- -' ,`""`, '- /\_,/ || (., ,;, ._ ;. (\|/.; ,: ||
-(_.-'/ \'-._) ,-``. || -; ;.- ..,, ` ||
- \_,/\ / __/ /` || ,;,, .; ||
- \ | / _.' || ;,. ;.. deuxfleurs.fr ||
- || \_,/ || . ,,\|/ ,, ;/,, ||
- , ----`-- , || . ,*;-. .;. ;,;.. . ,; ||
- |-::\|/..-| || ;` `. .,.: ;, ,,;,; ||
- |:. / . | || (( ) ;:., ;. , ||
- |:./ /\. | || ;, .., :.;; ,.,:.,.,\ (:) ||
- |:.`.\/ | || ...., ,.,: : .,. ||
- |:. |.`. | || ..., |/.,;| ;../ ||
- |:. /| \ | ||;... .:,;.,. .;..,..,., ||
- |:.. `. | | || ,,,,,\/,}/,,, ;/,,\/ , \,,,;/. ;.;, |,, ;...,|, ||
- .:.`; . |!_____________________________________________________________________!|
- |:. - -.._| !———————————————————————————————————————————————————————————————————————!
- `-.____.-' .`-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-|-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-`.
- .`-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-----------\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-`.
- .` /_________|_________\ `.
- {_________________________________________________________________________________}
- "—————————————————————————————————————————————————————————————————————————————————"</pre>
- </div>
- <section id="liste_outils" aria-label="liste des outils proposés par Deuxfleurs">
- <a href="https://guide.deuxfleurs.fr/prise_en_main/matrix/" role="link" aria-label="messagerie instantanée avec Matrix">
- <div id="discussion" aria-hidden="true">
- <pre class="center">!¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨!
-| x|
-| discussion |
-| ~~~~~~ ! ||
-|| ~~~~~ ! |
-| ~~ ~~ ? ||
-|| ~~ ~~ ~~~~ ~~~~~~~~ |
-|| ~~~~~~~~~~~ ? |
-!__________________________!</pre>
- <p>Messagerie instantanée avec Matrix</p>
- </div>
- </a>
- <a href="https://guide.deuxfleurs.fr/prise_en_main/jitsi/" role="link" aria-label="visioconférence avec Jitsi">
- <div id="visio" aria-hidden="true">
- <pre class="center">!¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨!
-| .,:¨¨¨:,. [__]|
-| visio !' '! |
-| (. • • .) |
-| ! ~ ! |
-| \ `-' / |
-| _.`. .'._ |
-| _.-~' \-/ `~-._ |
-!__________________________!</pre>
- <p>Visioconférence avec Jitsi</p>
- </div>
- </a>
- <a href="https://guide.deuxfleurs.fr/prise_en_main/web/" role="link" aria-label="hébergement de site web">
- <div id="sites-web" aria-hidden="true">
- <pre class="center">!¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨!
-|——————————————————————————|
-| sites ______________ x|
-| ----|web x|-- |
-| .———| ~~~~~~~~~~ |—. |
-| | | .————..————. | | |
-| |___| |____||____| |_| |
-| ~~~~|______________|~~ |
-!__________________________!</pre>
- <p>Hébergement de site web </p>
- </div>
- </a>
- <a href="https://guide.deuxfleurs.fr/prise_en_main/email/" role="link" aria-label="email (beta)">
- <div id="emails" aria-hidden="true" >
- <pre class="center">!¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨!
-| | • ~~~~~~~~~~~~~~ |
-| mails | • ~~~~~~~~~~~~~~ |
-| | • ~~~~~~~~~~~~~~ |
-| |o ——————————————— |
-| |o ——————————————— |
-| |o ——————————————— |
-| [] [] |o ——————————————— |
-!__________________________!</pre>
- <p>Email (beta)</p>
- </div>
- </a>
- <a href="https://guide.deuxfleurs.fr/prise_en_main/cryptpad/" role="link" aria-label="suite collaborative avec CryptPad">
- <div id="collaboration" aria-hidden="true">
- <pre class="center">!¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨!
-| |_|_|_|_|_|_|_|_| []|
-| col- _______________ |
-| |~ lab ~~~~~~~~~| |
-| |~ ora ~~~~~~~~~| |
-| |~ tion ~~~~~~~~| |
-| |~~~~~~~~~~~~~~~| |
-| |~~~~~~~~~~~~~~~| |
-!_____|_______________|____!</pre>
- <p>Suite collaborative avec CryptPad</p>
- </div>
- </a>
- <a href="https://guide.deuxfleurs.fr/prise_en_main/plume/" role="link" aria-label="blog décentralisé avec Plume">
- <div id="blog" aria-hidden="true">
- <pre class="center">!¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨!
-| ______________ |
-| blog —————————————— |
-| .____________. |
-| |____________| |
-| ~~~~~~~~~~~~~~ |
-| ~~~~~~~~~~~~~~ |
-| ~~~~~~~~~~ [_] |
-!__________________________!</pre>
- <p>Blog décentralisé avec Plume</p>
- </div>
- </a>
- </section>
- <div id="txt_outils">
- <p>Remplacez WhatsApp, Slack, Gmail, Zoom ou encore Google Drive par des outils Deuxfleurs. Nous proposons des alternatives sobres et non-marchandes à ces services, pour que vous restiez en contact avec votre entourage, votre association ou votre collectif.</p>
- <p>Envie de faire entendre votre voix sur Internet ? Nous mettons à disposition plusieurs outils de publication sur le web allant de la plateforme de blog partagée à la publication de sites web en autonomie.</p>
- <p>Prenez contact avec nous, nous vous aiderons à identifier les outils dont vous avez besoin et nous vous accompagnerons dans votre transition. ⤵</p>
- </div>
- <h2 id="valeurs">Avec des valeurs fortes</h2>
- <div id="ronce">
- <img src="./ronce.webp" loading="lazy" alt="Deux personnages qui regardent et s'avancent vers une maison cabane perchée dans un arbre, illustrant notre envie d'un internet plus éthique.">
- </div>
- <section id="liste_valeurs">
- <p id="coop">La coopération <span class="description">- eg. promouvoir l'intéropérabilité, les communs, le libre, et les formats de données ouverts </span></p>
- <p id="autonomie">L'autonomie <span class="description">- eg. gérer nos propres moyens de communications, prendre nos propres décisions</span></p>
- <p id="solidarite">La solidarité <span class="description">- eg. partager le savoir, partager les ressources informatiques, s'entraider pour la gestion des services</span></p>
- <p id="liberte">La liberté <span class="description">- eg. permettre à toutes et tous de s'exprimer, respecter la vie privée</span></p>
- <p id="suivre"><a href="https://plume.deuxfleurs.fr/timeline/1">Suivez notre actualité, réflexions et analyses sur notre blog Plume</a></p>
- </section>
- <h2 id="connaissance">Faisons connaissance</h2>
- <div id="txt_connaissance">
- <p lang="fr">L'accès à nos services est à prix libre. Nous estimons leur coût à 15€/an/compte pour leur maintien en fonctionnement et recommandons le double pour permettre à l'association de se développer. Il est conditionné par les ressources disponibles, à la fois matérielles et humaines.</p>
- <p lang="fr">Pour accéder à nos services ou simplement discuter avec nous, écrivez à <span style="text-decoration: underline;">coucou[@]deuxfleurs.fr</span>, rejoignez-nous sur le salon Matrix <span style="text-decoration: underline;">#deuxfleurs:deuxfleurs.fr</span> ou rencontrez-nous à : </p>
- <ul>
- <!-- L'historique des événements passés est sur evenements_passes.html -->
- <!-- Mars 2024 -->
- <li role="none"><a href="https://jitsi.deuxfleurs.fr/r%C3%A9union_mensuelle_deuxfleurs">Réunion mensuelle «au coin du feu»</a> en ligne, <span class="highlight">le 5 mars 2024 à 19h00</span>.<br>Une fois par mois nous organisons une réunion en ligne informelle. C'est le bon moment pour venir faire un coucou si vous voulez parler à des gens de vive voix numérique.</li>
- <li role="none"><a href="https://bbb.paquerette.eu/b/dom-67q-irl-nfc">Réunion mensuelle du collectif CHATONS</a> en ligne, <span class="highlight">le 12 mars 2024 à 20h00</span>.<br>Une fois par mois a lieu une réunion entre les membres du collectif <a href=https://www.chatons.org/>CHATONS</a>.</li>
- <li role="none"><a href="#">Barcamp Interne</a> au Couvent des Clarisses à Roubaix, <span class="highlight">le 15, 16 et 17 mars</span>.<br> Les membres de Deuxfleurs prennent le temps de se retrouver et de discuter de l'association. N'hésitez pas à nous contacter pour passer nous voir le samedi soir.</li>
- <!-- Avril 2024 -->
- <li role="none"><a href="https://jitsi.deuxfleurs.fr/r%C3%A9union_mensuelle_deuxfleurs">Réunion mensuelle «au coin du feu»</a> en ligne, <span class="highlight">le 2 avril 2024 à 19h00</span>.<br>Une fois par mois nous organisons une réunion en ligne informelle. C'est le bon moment pour venir faire un coucou si vous voulez parler à des gens de vive voix numérique.</li>
-
- <li role="none"><a href="#">Permanence associative autour du Libre</a> au Café Citoyen à Lille, <span class="highlight">le 30 avril 2024 à 19h30</span>.<br> La permanence associative autour du Libre est une manifestation conviviale, ouverte à toutes et tous, organisée le dernier mardi de chaque mois, et regroupant les collectifs Chtinux, Raoull, Deuxfleurs, Mycélium, CLX et Cliss XXI.
- </ul>
-
- </div>
- <div id="calendrier">
- <!--
- Pour générer les mois suivants, voir : https://github.com/superboum/code-bazaar/tree/master/algo/calendar
- Notez que les mois sont déjà générés jusqu'à décembre 2024 dans ce fichier : https://github.com/superboum/code-bazaar/blob/master/algo/calendar/calendars.txt
- -->
- <div id="mois_actuel" role="img" aria-label="calendrier de nos jours de permanence prévus pour ce mois-ci">
- <pre aria-hidden="true">.——————————————————————————————————————.
-| CALENDRIER MARS 2024 |
-|——————————————————————————————————————|
-| ———— ———— ———— |
-| | 01 | 02 | 03 | |
-| ———— ———— ———— ———— ———— ———— ———— |
-| | 04 |<span class="highlight"> 05 </span>| 06 | 07 | 08 | 09 | 10 | |
-| ———— ———— ———— ———— ———— ———— ———— |
-| | 11 |<span class="highlight"> 12 </span>| 13 | 14 |<span class="highlight"> 15 </span>|<span class="highlight"> 16 </span>|<span class="highlight"> 17 </span>| |
-| ———— ———— ———— ———— ———— ———— ———— |
-| | 18 | 19 | 20 | 21 | 22 | 23 | 24 | |
-| ———— ———— ———— ———— ———— ———— ———— |
-| | 25 | 26 | 27 | 28 | 29 | 30 | 31 | |
-| ———— ———— ———— ———— ———— ———— ———— |
-|______________________________________|</pre>
-
- </div>
- <div id="mois_suivant" role="img" aria-label="calendrier de nos jours de permanence prévus pour le mois prochain">
- <pre aria-hidden="true">.——————————————————————————————————————.
-| CALENDRIER AVRIL 2024 |
-|——————————————————————————————————————|
-| ———— ———— ———— ———— ———— ———— ———— |
-| | 01 |<span class="highlight"> 02 </span>| 03 | 04 | 05 | 06 | 07 | |
-| ———— ———— ———— ———— ———— ———— ———— |
-| | 08 | 09 | 10 | 11 | 12 | 13 | 14 | |
-| ———— ———— ———— ———— ———— ———— ———— |
-| | 15 | 16 | 17 | 18 | 19 | 20 | 21 | |
-| ———— ———— ———— ———— ———— ———— ———— |
-| | 22 | 23 | 24 | 25 | 26 | 27 | 28 | |
-| ———— ———— ———— ———— ———— ———— ———— |
-| | 29 |<span class="highlight"> 30 </span>| |
-| ———— ———— |
-|______________________________________|</pre>
- </div>
-
- </main>
- <footer class="noscroll" aria-label="pied de page et liens vers CGU, mentions, sources et risques">
- <div id="parterre" role="img" aria-label="image d'un parterre de fleurs qui fleurit">
- <pre class="center">
-
-
- . . . , ,
- \|/ >;:;< .:.:,:,
- (""") >( >O< )< ,,, ;::x::;
- \_/ ,,, (_:_)' {{{}} ,:':`:.
- /|\ {{{}} '. | _ ~~|~~ '|'
- (\ | {{}~Y~ `> \|.'< (-) \|/ |
- \| ~Y~\|/ >`>| <` Y \|/ |
- ____,;/___\\|,,\|/\|//\,;\`|/`/_\|//\ /\.\|/,_\\\\|//_______;._
-~^` ^^^~) ~ ~~^^^- ~ ^ ~~~ ^^^~,` ) /,~~~~~~^^^^~^~~~~~~^^^^~~~~^^~~~~~~~~~~~~~^^^~~^^~~~~~~~~~~~~'''''''''' '''^^~^~~~^^^~~~ ~^~ ~^~ ^^ ^~ ~~ ~^~ ^~~^~
- . · ., :.,-`·. ~;.,.:`. ,:~, .·".-'.`*,;:,,'.·'``;.'-. : __ - /^^^^^^^^^^- __ _-
-_-__ __/`` _~^~~^~~ ^ ^^ ~~^^~ ^^~ ~_ __~^^^~~ ^~~~ ~``~~~~~;_ ^ '·`- !'`.,` ,.· . ~~~~ ~~*^^ ^^(^^^¨¨¨ ¨ ¨¨ ; ,.; `-. ; _
- `- - ___ '` .-;)` `_ " '/ `-_ -- : ^* .
-- ' .- * ; -. _- ~ . , . . _ - ` '-. ,- '-. -^. `' ._ -·.
- - , · .·. , _-` ' `\ ; . ; , ~ . .
- ` _- .
-- _ _ - . - - _ , - ; ( _. ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ . _ . - _ ; ~ ` ^ ^ | - * - ,
- \ . , . · - ` ||D |||e |||u |||x |||f |||l |||e |||u |||r |||s || ` `_ ` ' _ -
- ` _ - ; , . ||__|||__|||__|||__|||__|||__|||__|||__|||__|||__|| " - - '- `
- - `· |/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\| ; ` _,. ; , _ - ; \
-' - _ ' ~ _ ;· ` - _ ~` ` ^ . : . , ,,, ~ ` ^
- ` ~ ~ ^ ^ ` _ ` - · : Plantez une graine avec nous ! ' , _ - : - ;
- - , - `_ -`, .
- - , - * ; -. _- ~ . , . . _ - ` '-. ,- '-. -^. `' ._ -·.`
- ^ ., · - , ; `, `;. . ; _ -
-.-; ; ¨¨ ^^ _ ) . . , . . . . . .- ` _ - * ` "`', _ ; , ;, :-
- _ ` ¨ `_ ' `_,.- ` ;-. ''
- _ · `'^^ ^
-_ ` ^ ¨ · _ - " ` * - ; - _ .·
- `` - _ - : ; _ ` "' - : . ,. _ .-__ ¨¨ ;· ·
- ` _ , _ `_^ ~ ` - \ ` ^^^ ^^ ^^ ^~ `- ^ * , -
- ~ ~_ _ ` _ "" _.
-
- </pre>
- <pre class="center hide">
-
-
- . . . • , ,
- \|/ >;:;< .:.:,:,
- (""") >( >O< )< ,,, ;::x::;
- \_/ ,,, (_:_)' {{{}} ,:':`:.
- /|\ {{{}} '. | _ ~~|~~ '|'
- (\ | {{}~Y~ `> \|.'< (-) \|/ |
- \| ~Y~\|/ >`>| <` Y \|/ |
- ____,;/___\\|,,\|/\|//\,;\`|/`/_\|//\ /\.\|/,_\\\\|//_______;._
-~^` ^^^~) ~ ~~^^^- ~ ^ ~~~ ^^^~,` ) /,~~~~~~^^^^~^~~~~~~^^^^~~~~^^~~~~~~~~~~~~~^^^~~^^~~~~~~~~~~~~'''''''''' '''^^~^~~~^^^~~~ ~^~ ~^~ ^^ ^~ ~~ ~^~ ^~~^~
- . · ., :.,-`·. ~;.,.:`. ,:~, .·".-'.`*,;:,,'.·'``;.'-. : __ - /^^^^^^^^^^- __ _-
-_-__ __/`` _~^~~^~~ ^ ^^ ~~^^~ ^^~ ~_ __~^^^~~ ^~~~ ~``~~~~~;_ ^ '·`- !'`.,` ,.· . ~~~~ ~~*^^ ^^(^^^¨¨¨ ¨ ¨¨ ; ,.; `-. ; _
- `- - ___ '` .-;)` `_ " '/ `-_ -- : ^* .
-- ' .- * ; -. _- ~ . , . . _ - ` '-. ,- '-. -^. `' ._ -·.
- - , · .·. , _-` ' `\ ; . ; , ~ . .
- ` _- .
-- _ _ - . - - _ , - ; ( _. ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ . _ . - _ ; ~ ` ^ ^ | - * - ,
- \ . , . · - ` ||D |||e |||u |||x |||f |||l |||e |||u |||r |||s || ` `_ ` ' _ -
- ` _ - ; , . ||__|||__|||__|||__|||__|||__|||__|||__|||__|||__|| " - - '- `
- - `· |/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\| ; ` _,. ; , _ - ; \
-' - _ ' ~ _ ;· ` - _ ~` ` ^ . : . , ,,, ~ ` ^
- ` ~ ~ ^ ^ ` _ ` - · : Plantez une graine avec nous ! ' , _ - : - ;
- - , - `_ -`, .
- - , - * ; -. _- ~ . , . . _ - ` '-. ,- '-. -^. `' ._ -·.`
- ^ ., · - , ; `, `;. . ; _ -
-.-; ; ¨¨ ^^ _ ) . . , . . . . . .- ` _ - * ` "`', _ ; , ;, :-
- _ ` ¨ `_ ' `_,.- ` ;-. ''
- _ · `'^^ ^
-_ ` ^ ¨ · _ - " ` * - ; - _ .·
- `` - _ - : ; _ ` "' - : . ,. _ .-__ ¨¨ ;· ·
- ` _ , _ `_^ ~ ` - \ ` ^^^ ^^ ^^ ^~ `- ^ * , -
- ~ ~_ _ ` _ "" _.
-
- </pre>
- <pre class="center hide">
-
-
- . . . , ,
- \|/ >;:;< .:.:,:,
- (""") >( >O< )< • ,,, ;::x::;
- \_/ ,,, (_:_)' {{{}} ,:':`:.
- /|\ {{{}} '. | _ ~~|~~ '|'
- (\ | {{}~Y~ `> \|.'< (-) \|/ |
- \| ~Y~\|/ >`>| <` Y \|/ |
- ____,;/___\\|,,\|/\|//\,;\`|/`/_\|//\ /\.\|/,_\\\\|//_______;._
-~^` ^^^~) ~ ~~^^^- ~ ^ ~~~ ^^^~,` ) /,~~~~~~^^^^~^~~~~~~^^^^~~~~^^~~~~~~~~~~~~~^^^~~^^~~~~~~~~~~~~'''''''''' '''^^~^~~~^^^~~~ ~^~ ~^~ ^^ ^~ ~~ ~^~ ^~~^~
- . · ., :.,-`·. ~;.,.:`. ,:~, .·".-'.`*,;:,,'.·'``;.'-. : __ - /^^^^^^^^^^- __ _-
-_-__ __/`` _~^~~^~~ ^ ^^ ~~^^~ ^^~ ~_ __~^^^~~ ^~~~ ~``~~~~~;_ ^ '·`- !'`.,` ,.· . ~~~~ ~~*^^ ^^(^^^¨¨¨ ¨ ¨¨ ; ,.; `-. ; _
- `- - ___ '` .-;)` `_ " '/ `-_ -- : ^* .
-- ' .- * ; -. _- ~ . , . . _ - ` '-. ,- '-. -^. `' ._ -·.
- - , · .·. , _-` ' `\ ; . ; , ~ . .
- ` _- .
-- _ _ - . - - _ , - ; ( _. ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ . _ . - _ ; ~ ` ^ ^ | - * - ,
- \ . , . · - ` ||D |||e |||u |||x |||f |||l |||e |||u |||r |||s || ` `_ ` ' _ -
- ` _ - ; , . ||__|||__|||__|||__|||__|||__|||__|||__|||__|||__|| " - - '- `
- - `· |/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\| ; ` _,. ; , _ - ; \
-' - _ ' ~ _ ;· ` - _ ~` ` ^ . : . , ,,, ~ ` ^
- ` ~ ~ ^ ^ ` _ ` - · : Plantez une graine avec nous ! ' , _ - : - ;
- - , - `_ -`, .
- - , - * ; -. _- ~ . , . . _ - ` '-. ,- '-. -^. `' ._ -·.`
- ^ ., · - , ; `, `;. . ; _ -
-.-; ; ¨¨ ^^ _ ) . . , . . . . . .- ` _ - * ` "`', _ ; , ;, :-
- _ ` ¨ `_ ' `_,.- ` ;-. ''
- _ · `'^^ ^
-_ ` ^ ¨ · _ - " ` * - ; - _ .·
- `` - _ - : ; _ ` "' - : . ,. _ .-__ ¨¨ ;· ·
- ` _ , _ `_^ ~ ` - \ ` ^^^ ^^ ^^ ^~ `- ^ * , -
- ~ ~_ _ ` _ "" _.
-
- </pre>
- <pre class="center hide">
-
-
- . . . , ,
- \|/ >;:;< .:.:,:,
- (""") >( >O< )< ,,, ;::x::;
- \_/ ,,, (_:_)' {{{}} ,:':`:.
- /|\ {{{}} '. | _ ~~|~~ '|'
- (\ | {{}~Y~ `> \|.'< (-) \|/ |
- \| ~Y~\|/ >`>| <` Y • \|/ |
- ____,;/___\\|,,\|/\|//\,;\`|/`/_\|//\ /\.\|/,_\\\\|//_______;._
-~^` ^^^~) ~ ~~^^^- ~ ^ ~~~ ^^^~,` ) /,~~~~~~^^^^~^~~~~~~^^^^~~~~^^~~~~~~~~~~~~~^^^~~^^~~~~~~~~~~~~'''''''''' '''^^~^~~~^^^~~~ ~^~ ~^~ ^^ ^~ ~~ ~^~ ^~~^~
- . · ., :.,-`·. ~;.,.:`. ,:~, .·".-'.`*,;:,,'.·'``;.'-. : __ - /^^^^^^^^^^- __ _-
-_-__ __/`` _~^~~^~~ ^ ^^ ~~^^~ ^^~ ~_ __~^^^~~ ^~~~ ~``~~~~~;_ ^ '·`- !'`.,` ,.· . ~~~~ ~~*^^ ^^(^^^¨¨¨ ¨ ¨¨ ; ,.; `-. ; _
- `- - ___ '` .-;)` `_ " '/ `-_ -- : ^* .
-- ' .- * ; -. _- ~ . , . . _ - ` '-. ,- '-. -^. `' ._ -·.
- - , · .·. , _-` ' `\ ; . ; , ~ . .
- ` _- .
-- _ _ - . - - _ , - ; ( _. ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ . _ . - _ ; ~ ` ^ ^ | - * - ,
- \ . , . · - ` ||D |||e |||u |||x |||f |||l |||e |||u |||r |||s || ` `_ ` ' _ -
- ` _ - ; , . ||__|||__|||__|||__|||__|||__|||__|||__|||__|||__|| " - - '- `
- - `· |/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\| ; ` _,. ; , _ - ; \
-' - _ ' ~ _ ;· ` - _ ~` ` ^ . : . , ,,, ~ ` ^
- ` ~ ~ ^ ^ ` _ ` - · : Plantez une graine avec nous ! ' , _ - : - ;
- - , - `_ -`, .
- - , - * ; -. _- ~ . , . . _ - ` '-. ,- '-. -^. `' ._ -·.`
- ^ ., · - , ; `, `;. . ; _ -
-.-; ; ¨¨ ^^ _ ) . . , . . . . . .- ` _ - * ` "`', _ ; , ;, :-
- _ ` ¨ `_ ' `_,.- ` ;-. ''
- _ · `'^^ ^
-_ ` ^ ¨ · _ - " ` * - ; - _ .·
- `` - _ - : ; _ ` "' - : . ,. _ .-__ ¨¨ ;· ·
- ` _ , _ `_^ ~ ` - \ ` ^^^ ^^ ^^ ^~ `- ^ * , -
- ~ ~_ _ ` _ "" _.
-
- </pre>
- <pre class="center hide">
-
-
- . . . , ,
- \|/ >;:;< .:.:,:,
- (""") >( >O< )< ,,, ;::x::;
- \_/ ,,, (_:_)' {{{}} ,:':`:.
- /|\ {{{}} '. | _ ~~|~~ '|'
- (\ | {{}~Y~ `> \|.'< (-) \|/ |
- \| ~Y~\|/ >`>| <` Y \|/ |
- ____,;/___\\|,,\|/\|//\,;\`|/`/_\|//\ /\.\|/,_\\\\|//_______;._
-~^` ^^^~) ~ ~~^^^- ~ ^ ~~~ ^^^~,` ) /,~~~~~~^^^^~^~~~~~~^^^^~~~~^^~~~~~~~~~~~~~^^•~~^^~~~~~~~~~~~~'''''''''' '''^^~^~~~^^^~~~ ~^~ ~^~ ^^ ^~ ~~ ~^~ ^~~^~
- . · ., :.,-`·. ~;.,.:`. ,:~, .·".-'.`*,;:,,'.·'``;.'-. : __ - /^^^^^^^^^^- __ _-
-_-__ __/`` _~^~~^~~ ^ ^^ ~~^^~ ^^~ ~_ __~^^^~~ ^~~~ ~``~~~~~;_ ^ '·`- !'`.,` ,.· . ~~~~ ~~*^^ ^^(^^^¨¨¨ ¨ ¨¨ ; ,.; `-. ; _
- `- - ___ '` .-;)` `_ " '/ `-_ -- : ^* .
-- ' .- * ; -. _- ~ . , . . _ - ` '-. ,- '-. -^. `' ._ -·.
- - , · .·. , _-` ' `\ ; . ; , ~ . .
- ` _- .
-- _ _ - . - - _ , - ; ( _. ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ . _ . - _ ; ~ ` ^ ^ | - * - ,
- \ . , . · - ` ||D |||e |||u |||x |||f |||l |||e |||u |||r |||s || ` `_ ` ' _ -
- ` _ - ; , . ||__|||__|||__|||__|||__|||__|||__|||__|||__|||__|| " - - '- `
- - `· |/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\| ; ` _,. ; , _ - ; \
-' - _ ' ~ _ ;· ` - _ ~` ` ^ . : . , ,,, ~ ` ^
- ` ~ ~ ^ ^ ` _ ` - · : Plantez une graine avec nous ! ' , _ - : - ;
- - , - `_ -`, .
- - , - * ; -. _- ~ . , . . _ - ` '-. ,- '-. -^. `' ._ -·.`
- ^ ., · - , ; `, `;. . ; _ -
-.-; ; ¨¨ ^^ _ ) . . , . . . . . .- ` _ - * ` "`', _ ; , ;, :-
- _ ` ¨ `_ ' `_,.- ` ;-. ''
- _ · `'^^ ^
-_ ` ^ ¨ · _ - " ` * - ; - _ .·
- `` - _ - : ; _ ` "' - : . ,. _ .-__ ¨¨ ;· ·
- ` _ , _ `_^ ~ ` - \ ` ^^^ ^^ ^^ ^~ `- ^ * , -
- ~ ~_ _ ` _ "" _.
-
- </pre>
- <pre class="center hide">
-
-
- . . . , ,
- \|/ >;:;< .:.:,:,
- (""") >( >O< )< ,,, ;::x::;
- \_/ ,,, (_:_)' {{{}} ,:':`:.
- /|\ {{{}} '. | _ ~~|~~ '|'
- (\ | {{}~Y~ `> \|.'< (-) \|/ |
- \| ~Y~\|/ >`>| <` Y \|/ |
- ____,;/___\\|,,\|/\|//\,;\`|/`/_\|//\|\ /\.\|/,_\\\\|//_______;._
-~^` ^^^~) ~ ~~^^^- ~ ^ ~~~ ^^^~,` ) /,~~~~~~^^^^~^~~~~~~^^^^~~~~^^~~~~~~~~~~~~~^^^~~^^~~~~~~~~~~~~'''''''''' '''^^~^~~~^^^~~~ ~^~ ~^~ ^^ ^~ ~~ ~^~ ^~~^~
- . · ., :.,-`·. ~;.,.:`. ,:~, .·".-'.`*,;:,,'.·'``;.'-. : __ - /^^^^^^^^^^- __ _-
-_-__ __/`` _~^~~^~~ ^ ^^ ~~^^~ ^^~ ~_ __~^^^~~ ^~~~ ~``~~~~~;_ ^ '·`- !'`.,` ,.· . ~~~~ ~~*^^ ^^(^^^¨¨¨ ¨ ¨¨ ; ,.; `-. ; _
- `- - ___ '` .-;)` `_ " '/ `-_ -- : ^* .
-- ' .- * ; -. _- ~ . , . . _ - ` '-. ,- '-. -^. `' ._ -·.
- - , · .·. , _-` ' `\ ; . ; , ~ . .
- ` _- .
-- _ _ - . - - _ , - ; ( _. ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ . _ . - _ ; ~ ` ^ ^ | - * - ,
- \ . , . · - ` ||D |||e |||u |||x |||f |||l |||e |||u |||r |||s || ` `_ ` ' _ -
- ` _ - ; , . ||__|||__|||__|||__|||__|||__|||__|||__|||__|||__|| " - - '- `
- - `· |/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\| ; ` _,. ; , _ - ; \
-' - _ ' ~ _ ;· ` - _ ~` ` ^ . : . , ,,, ~ ` ^
- ` ~ ~ ^ ^ ` _ ` - · : Plantez une graine avec nous ! ' , _ - : - ;
- - , - `_ -`, .
- - , - * ; -. _- ~ . , . . _ - ` '-. ,- '-. -^. `' ._ -·.`
- ^ ., · - , ; `, `;. . ; _ -
-.-; ; ¨¨ ^^ _ ) . . , . . . . . .- ` _ - * ` "`', _ ; , ;, :-
- _ ` ¨ `_ ' `_,.- ` ;-. ''
- _ · `'^^ ^
-_ ` ^ ¨ · _ - " ` * - ; - _ .·
- `` - _ - : ; _ ` "' - : . ,. _ .-__ ¨¨ ;· ·
- ` _ , _ `_^ ~ ` - \ ` ^^^ ^^ ^^ ^~ `- ^ * , -
- ~ ~_ _ ` _ "" _.
-
- </pre>
- <pre class="center hide">
-
-
- . . . , ,
- \|/ >;:;< .:.:,:,
- (""") >( >O< )< ,,, ;::x::;
- \_/ ,,, (_:_)' {{{}} ,:':`:.
- /|\ {{{}} '. | _ ~~|~~ '|'
- (\ | {{}~Y~ `> \|.'< (-) \| \|/ |
- \| ~Y~\|/ >`>| <` Y \| \|/ |
- ____,;/___\\|,,\|/\|//\,;\`|/`/_\|//\|\ /\.\|/,_\\\\|//_______;._
-~^` ^^^~) ~ ~~^^^- ~ ^ ~~~ ^^^~,` ) /,~~~~~~^^^^~^~~~~~~^^^^~~~~^^~~~~~~~~~~~~~^^^~~^^~~~~~~~~~~~~'''''''''' '''^^~^~~~^^^~~~ ~^~ ~^~ ^^ ^~ ~~ ~^~ ^~~^~
- . · ., :.,-`·. ~;.,.:`. ,:~, .·".-'.`*,;:,,'.·'``;.'-. : __ - /^^^^^^^^^^- __ _-
-_-__ __/`` _~^~~^~~ ^ ^^ ~~^^~ ^^~ ~_ __~^^^~~ ^~~~ ~``~~~~~;_ ^ '·`- !'`.,` ,.· . ~~~~ ~~*^^ ^^(^^^¨¨¨ ¨ ¨¨ ; ,.; `-. ; _
- `- - ___ '` .-;)` `_ " '/ `-_ -- : ^* .
-- ' .- * ; -. _- ~ . , . . _ - ` '-. ,- '-. -^. `' ._ -·.
- - , · .·. , _-` ' `\ ; . ; , ~ . .
- ` _- .
-- _ _ - . - - _ , - ; ( _. ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ . _ . - _ ; ~ ` ^ ^ | - * - ,
- \ . , . · - ` ||D |||e |||u |||x |||f |||l |||e |||u |||r |||s || ` `_ ` ' _ -
- ` _ - ; , . ||__|||__|||__|||__|||__|||__|||__|||__|||__|||__|| " - - '- `
- - `· |/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\| ; ` _,. ; , _ - ; \
-' - _ ' ~ _ ;· ` - _ ~` ` ^ . : . , ,,, ~ ` ^
- ` ~ ~ ^ ^ ` _ ` - · : Plantez une graine avec nous ! ' , _ - : - ;
- - , - `_ -`, .
- - , - * ; -. _- ~ . , . . _ - ` '-. ,- '-. -^. `' ._ -·.`
- ^ ., · - , ; `, `;. . ; _ -
-.-; ; ¨¨ ^^ _ ) . . , . . . . . .- ` _ - * ` "`', _ ; , ;, :-
- _ ` ¨ `_ ' `_,.- ` ;-. ''
- _ · `'^^ ^
-_ ` ^ ¨ · _ - " ` * - ; - _ .·
- `` - _ - : ; _ ` "' - : . ,. _ .-__ ¨¨ ;· ·
- ` _ , _ `_^ ~ ` - \ ` ^^^ ^^ ^^ ^~ `- ^ * , -
- ~ ~_ _ ` _ "" _.
-
- </pre>
- <pre class="center hide">
-
-
- . . . , ,
- \|/ >;:;< .:.:,:,
- (""") >( >O< )< ,,, ;::x::;
- \_/ ,,, (_:_)' ___ {{{}} ,:':`:.
- /|\ {{{}} '. | _ \~ ~~|~~ '|'
- (\ | {{}~Y~ `> \|.'< (-) \| \|/ |
- \| ~Y~\|/ >`>| <` Y \| \|/ |
- ____,;/___\\|,,\|/\|//\,;\`|/`/_\|//\|\ /\.\|/,_\\\\|//_______;._
-~^` ^^^~) ~ ~~^^^- ~ ^ ~~~ ^^^~,` ) /,~~~~~~^^^^~^~~~~~~^^^^~~~~^^~~~~~~~~~~~~~^^^~~^^~~~~~~~~~~~~'''''''''' '''^^~^~~~^^^~~~ ~^~ ~^~ ^^ ^~ ~~ ~^~ ^~~^~
- . · ., :.,-`·. ~;.,.:`. ,:~, .·".-'.`*,;:,,'.·'``;.'-. : __ - /^^^^^^^^^^- __ _-
-_-__ __/`` _~^~~^~~ ^ ^^ ~~^^~ ^^~ ~_ __~^^^~~ ^~~~ ~``~~~~~;_ ^ '·`- !'`.,` ,.· . ~~~~ ~~*^^ ^^(^^^¨¨¨ ¨ ¨¨ ; ,.; `-. ; _
- `- - ___ '` .-;)` `_ " '/ `-_ -- : ^* .
-- ' .- * ; -. _- ~ . , . . _ - ` '-. ,- '-. -^. `' ._ -·.
- - , · .·. , _-` ' `\ ; . ; , ~ . .
- ` _- .
-- _ _ - . - - _ , - ; ( _. ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ . _ . - _ ; ~ ` ^ ^ | - * - ,
- \ . , . · - ` ||D |||e |||u |||x |||f |||l |||e |||u |||r |||s || ` `_ ` ' _ -
- ` _ - ; , . ||__|||__|||__|||__|||__|||__|||__|||__|||__|||__|| " - - '- `
- - `· |/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\| ; ` _,. ; , _ - ; \
-' - _ ' ~ _ ;· ` - _ ~` ` ^ . : . , ,,, ~ ` ^
- ` ~ ~ ^ ^ ` _ ` - · : Plantez une graine avec nous ! ' , _ - : - ;
- - , - `_ -`, .
- - , - * ; -. _- ~ . , . . _ - ` '-. ,- '-. -^. `' ._ -·.`
- ^ ., · - , ; `, `;. . ; _ -
-.-; ; ¨¨ ^^ _ ) . . , . . . . . .- ` _ - * ` "`', _ ; , ;, :-
- _ ` ¨ `_ ' `_,.- ` ;-. ''
- _ · `'^^ ^
-_ ` ^ ¨ · _ - " ` * - ; - _ .·
- `` - _ - : ; _ ` "' - : . ,. _ .-__ ¨¨ ;· ·
- ` _ , _ `_^ ~ ` - \ ` ^^^ ^^ ^^ ^~ `- ^ * , -
- ~ ~_ _ ` _ "" _.
-
- </pre>
- <pre class="center hide">
-
-
- . . . , ,
- \|/ >;:;< .:.:,:,
- (""") >( >O< )< ,,, ;::x::;
- \_/ ,,, (_:_)' (___) {{{}} ,:':`:.
- /|\ {{{}} '. | _ \~ ~~|~~ '|'
- (\ | {{}~Y~ `> \|.'< (-) \| \|/ |
- \| ~Y~\|/ >`>| <` Y \| \|/ |
- ____,;/___\\|,,\|/\|//\,;\`|/`/_\|//\|\ /\.\|/,_\\\\|//_______;._
-~^` ^^^~) ~ ~~^^^- ~ ^ ~~~ ^^^~,` ) /,~~~~~~^^^^~^~~~~~~^^^^~~~~^^~~~~~~~~~~~~~^^^~~^^~~~~~~~~~~~~'''''''''' '''^^~^~~~^^^~~~ ~^~ ~^~ ^^ ^~ ~~ ~^~ ^~~^~
- . · ., :.,-`·. ~;.,.:`. ,:~, .·".-'.`*,;:,,'.·'``;.'-. : __ - /^^^^^^^^^^- __ _-
-_-__ __/`` _~^~~^~~ ^ ^^ ~~^^~ ^^~ ~_ __~^^^~~ ^~~~ ~``~~~~~;_ ^ '·`- !'`.,` ,.· . ~~~~ ~~*^^ ^^(^^^¨¨¨ ¨ ¨¨ ; ,.; `-. ; _
- `- - ___ '` .-;)` `_ " '/ `-_ -- : ^* .
-- ' .- * ; -. _- ~ . , . . _ - ` '-. ,- '-. -^. `' ._ -·.
- - , · .·. , _-` ' `\ ; . ; , ~ . .
- ` _- .
-- _ _ - . - - _ , - ; ( _. ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ . _ . - _ ; ~ ` ^ ^ | - * - ,
- \ . , . · - ` ||D |||e |||u |||x |||f |||l |||e |||u |||r |||s || ` `_ ` ' _ -
- ` _ - ; , . ||__|||__|||__|||__|||__|||__|||__|||__|||__|||__|| " - - '- `
- - `· |/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\| ; ` _,. ; , _ - ; \
-' - _ ' ~ _ ;· ` - _ ~` ` ^ . : . , ,,, ~ ` ^
- ` ~ ~ ^ ^ ` _ ` - · : Plantez une graine avec nous ! ' , _ - : - ;
- - , - `_ -`, .
- - , - * ; -. _- ~ . , . . _ - ` '-. ,- '-. -^. `' ._ -·.`
- ^ ., · - , ; `, `;. . ; _ -
-.-; ; ¨¨ ^^ _ ) . . , . . . . . .- ` _ - * ` "`', _ ; , ;, :-
- _ ` ¨ `_ ' `_,.- ` ;-. ''
- _ · `'^^ ^
-_ ` ^ ¨ · _ - " ` * - ; - _ .·
- `` - _ - : ; _ ` "' - : . ,. _ .-__ ¨¨ ;· ·
- ` _ , _ `_^ ~ ` - \ ` ^^^ ^^ ^^ ^~ `- ^ * , -
- ~ ~_ _ ` _ "" _.
-
- </pre>
- <pre class="center hide">
-
-
- . . . , ,
- \|/ >;:;< .:.:,:,
- (""") >( >O< )< wWWWw ,,, ;::x::;
- \_/ ,,, (_:_)' (___) {{{}} ,:':`:.
- /|\ {{{}} '. | _ \~ ~~|~~ '|'
- (\ | {{}~Y~ `> \|.'< (-) \| \|/ |
- \| ~Y~\|/ >`>| <` Y \| \|/ |
- ____,;/___\\|,,\|/\|//\,;\`|/`/_\|//\|\ /\.\|/,_\\\\|//_______;._
-~^` ^^^~) ~ ~~^^^- ~ ^ ~~~ ^^^~,` ) /,~~~~~~^^^^~^~~~~~~^^^^~~~~^^~~~~~~~~~~~~~^^^~~^^~~~~~~~~~~~~'''''''''' '''^^~^~~~^^^~~~ ~^~ ~^~ ^^ ^~ ~~ ~^~ ^~~^~
- . · ., :.,-`·. ~;.,.:`. ,:~, .·".-'.`*,;:,,'.·'``;.'-. : __ - /^^^^^^^^^^- __ _-
-_-__ __/`` _~^~~^~~ ^ ^^ ~~^^~ ^^~ ~_ __~^^^~~ ^~~~ ~``~~~~~;_ ^ '·`- !'`.,` ,.· . ~~~~ ~~*^^ ^^(^^^¨¨¨ ¨ ¨¨ ; ,.; `-. ; _
- `- - ___ '` .-;)` `_ " '/ `-_ -- : ^* .
-- ' .- * ; -. _- ~ . , . . _ - ` '-. ,- '-. -^. `' ._ -·.
- - , · .·. , _-` ' `\ ; . ; , ~ . .
- ` _- .
-- _ _ - . - - _ , - ; ( _. ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ . _ . - _ ; ~ ` ^ ^ | - * - ,
- \ . , . · - ` ||D |||e |||u |||x |||f |||l |||e |||u |||r |||s || ` `_ ` ' _ -
- ` _ - ; , . ||__|||__|||__|||__|||__|||__|||__|||__|||__|||__|| " - - '- `
- - `· |/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\| ; ` _,. ; , _ - ; \
-' - _ ' ~ _ ;· ` - _ ~` ` ^ . : . , ,,, ~ ` ^
- ` ~ ~ ^ ^ ` _ ` - · : Plantez une graine avec nous ! ' , _ - : - ;
- - , - `_ -`, .
- - , - * ; -. _- ~ . , . . _ - ` '-. ,- '-. -^. `' ._ -·.`
- ^ ., · - , ; `, `;. . ; _ -
-.-; ; ¨¨ ^^ _ ) . . , . . . . . .- ` _ - * ` "`', _ ; , ;, :-
- _ ` ¨ `_ ' `_,.- ` ;-. ''
- _ · `'^^ ^
-_ ` ^ ¨ · _ - " ` * - ; - _ .·
- `` - _ - : ; _ ` "' - : . ,. _ .-__ ¨¨ ;· ·
- ` _ , _ `_^ ~ ` - \ ` ^^^ ^^ ^^ ^~ `- ^ * , -
- ~ ~_ _ ` _ "" _.
-
- </pre>
- <pre class="center hide">
-
-
- . . . , ,
- \|/ >;:;< .:.:,:,
- (""") >( >O< )< wWWWw ,,, ;::x::;
- \_/ ,,, (_:_)' (___) {{{}} ,:':`:.
- /|\ {{{}} '. | _ \~ ~~|~~ '|'
- (\ | {{}~Y~ `> \|.'< (-) \| \|/ |
- \| ~Y~\|/ >`>| <` Y \| \|/ |
- ____,;/___\\|,,\|/\|//\,;\`|/`/_\|//\|\ /\.\|/,_\\\\|//_______;._
-~^` ^^^~) ~ ~~^^^- ~ ^ ~~~ ^^^~,` ) /,~~~~~~^^^^~^~~~~~~^^^^~~~~^^~~~~~~~~~~~~~^^^~~^^~~~~~~~~~~~~'''''''''' '''^^~^~~~^^^~~~ ~^~ ~^~ ^^ ^~ ~~ ~^~ ^~~^~
- . · ., :.,-`·. ~;.,.:`. ,:~, .·".-'.`*,;:,,'.·'``;.'-. : __ - /^^^^^^^^^^- __ _-
-_-__ __/`` _~^~~^~~ ^ ^^ ~~^^~ ^^~ ~_ __~^^^~~ ^~~~ ~``~~~~~;_ ^ '·`- !'`.,` ,.· . ~~~~ ~~*^^ ^^(^^^¨¨¨ ¨ ¨¨ ; ,.; `-. ; _
- `- - ___ '` .-;)` `_ " '/ `-_ -- : ^* .
-- ' .- * ; -. _- ~ . , . . _ - ` '-. ,- '-. -^. `' ._ -·.
- - , · .·. , _-` ' `\ ; . ; , ~ . .
- ` _- .
-- _ _ - . - - _ , - ; ( _. ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ . _ . - _ ; ~ ` ^ ^ | - * - ,
- \ . , . · - ` ||D |||e |||u |||x |||f |||l |||e |||u |||r |||s || ` `_ ` ' _ -
- ` _ - ; , . ||__|||__|||__|||__|||__|||__|||__|||__|||__|||__|| " - - '- `
- - `· |/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\| ; ` _,. ; , _ - ; \
-' - _ ' ~ _ ;· ` - _ ~` ` ^ . : . , ,,, ~ ` ^
- ` ~ ~ ^ ^ ` _ ` - · : Plantez une graine avec nous ! ' , _ - : - ;
- - , - `_ -`, .
- - , - * ; -. _- ~ . , . . _ - ` '-. ,- '-. -^. `' ._ -·.`
- ^ ., · - , ; `, `;. . ; _ -
-.-; ; ¨¨ ^^ _ ) . . , . . . . . .- ` _ - * ` "`', _ ; , ;, :-
- _ ` ¨ `_ ' `_,.- ` ;-. ''
- _ · `'^^ ^
-_ ` ^ ¨ · _ - " ` * - ; - _ .·
- `` - _ - : ; _ ` "' - : . ,. _ .-__ ¨¨ ;· ·
- ` _ , _ `_^ ~ ` - \ ` ^^^ ^^ ^^ ^~ `- ^ * , -
- ~ ~_ _ ` _ "" _.
-
- </pre>
- <pre class="center hide">
-
-
- . . . , ,
- \|/ >;:;< .:.:,:,
- (""") >( >O< )< wWWWw ,,, ;::x::;
- \_/ ,,, (_:_)' (___) {{{}} ,:':`:.
- /|\ {{{}} '. | _ \~ ~~|~~ '|'
- (\ | {{}~Y~ `> \|.'< (-) \| \|/ |
- \| ~Y~\|/ >`>| <` Y \| \|/ |
- ____,;/___\\|,,\|/\|//\,;\`|/`/_\|//\|\ /\.\|/,_\\\\|//_______;._
-~^` ^^^~) ~ ~~^^^- ~ ^ ~~~ ^^^~,` ) /,~~~~~~^^^^~^~~~~~~^^^^~~~~^^~~~~~~~~~~~~~^^^~~^^~~~~~~~~~~~~'''''''''' '''^^~^~~~^^^~~~ ~^~ ~^~ ^^ ^~ ~~ ~^~ ^~~^~
- . · ., :.,-`·. ~;.,.:`. ,:~, .·".-'.`*,;:,,'.·'``;.'-. : __ - /^^^^^^^^^^- __ _-
-_-__ __/`` _~^~~^~~ ^ ^^ ~~^^~ ^^~ ~_ __~^^^~~ ^~~~ ~``~~~~~;_ ^ '·`- !'`.,` ,.· . ~~~~ ~~*^^ ^^(^^^¨¨¨ ¨ ¨¨ ; ,.; `-. ; _
- `- - ___ '` .-;)` `_ " '/ `-_ -- : ^* .
-- ' .- * ; -. _- ~ . , . . _ - ` '-. ,- '-. -^. `' ._ -·.
- - , · .·. , _-` ' `\ ; . ; , ~ . .
- ` _- .
-- _ _ - . - - _ , - ; ( _. ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ . _ . - _ ; ~ ` ^ ^ | - * - ,
- \ . , . · - ` ||D |||e |||u |||x |||f |||l |||e |||u |||r |||s || ` `_ ` ' _ -
- ` _ - ; , . ||__|||__|||__|||__|||__|||__|||__|||__|||__|||__|| " - - '- `
- - `· |/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\| ; ` _,. ; , _ - ; \
-' - _ ' ~ _ ;· ` - _ ~` ` ^ . : . , ,,, ~ ` ^
- ` ~ ~ ^ ^ ` _ ` - · : Plantez une graine avec nous ! ' , _ - : - ;
- - , - `_ -`, .
- - , - * ; -. _- ~ . , . . _ - ` '-. ,- '-. -^. `' ._ -·.`
- ^ ., · - , ; `, `;. . ; _ -
-.-; ; ¨¨ ^^ _ ) . . , . . . . . .- ` _ - * ` "`', _ ; , ;, :-
- _ ` ¨ `_ ' `_,.- ` ;-. ''
- _ · `'^^ ^
-_ ` ^ ¨ · _ - " ` * - ; - _ .·
- `` - _ - : ; _ ` "' - : . ,. _ .-__ ¨¨ ;· ·
- ` _ , _ `_^ ~ ` - \ ` ^^^ ^^ ^^ ^~ `- ^ * , -
- ~ ~_ _ ` _ "" _.
-
- </pre>
- <pre class="center hide">
-
-
- . . . , ,
- \|/ >;:;< .:.:,:,
- (""") >( >O< )< wWWWw ,,, ;::x::;
- \_/ ,,, (_:_)' (___) {{{}} ,:':`:.
- /|\ {{{}} '. | _ \~ ~~|~~ '|'
- (\ | {{}~Y~ `> \|.'< (-) \| \|/ |
- \| ~Y~\|/ >`>| <` Y \| \|/ |
- ____,;/___\\|,,\|/\|//\,;\`|/`/_\|//\|\ /\.\|/,_\\\\|//_______;._
-~^` ^^^~) ~ ~~^^^- ~ ^ ~~~ ^^^~,` ) /,~~~~~~^^^^~^~~~~~~^^^^~~~~^^~~~~~~~~~~~~~^^^~~^^~~~~~~~~~~~~'''''''''' '''^^~^~~~^^^~~~ ~^~ ~^~ ^^ ^~ ~~ ~^~ ^~~^~
- . · ., :.,-`·. ~;.,.:`. ,:~, .·".-'.`*,;:,,'.·'``;.'-. : __ - /^^^^^^^^^^- __ _-
-_-__ __/`` _~^~~^~~ ^ ^^ ~~^^~ ^^~ ~_ __~^^^~~ ^~~~ ~``~~~~~;_ ^ '·`- !'`.,` ,.· . ~~~~ ~~*^^ ^^(^^^¨¨¨ ¨ ¨¨ ; ,.; `-. ; _
- `- - ___ '` .-;)` `_ " '/ `-_ -- : ^* .
-- ' .- * ; -. _- ~ . , . . _ - ` '-. ,- '-. -^. `' ._ -·.
- - , · .·. , _-` ' `\ ; . ; , ~ . .
- ` _- .
-- _ _ - . - - _ , - ; ( _. ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ . _ . - _ ; ~ ` ^ ^ | - * - ,
- \ . , . · - ` ||D |||e |||u |||x |||f |||l |||e |||u |||r |||s || ` `_ ` ' _ -
- ` _ - ; , . ||__|||__|||__|||__|||__|||__|||__|||__|||__|||__|| " - - '- `
- - `· |/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\| ; ` _,. ; , _ - ; \
-' - _ ' ~ _ ;· ` - _ ~` ` ^ . : . , ,,, ~ ` ^
- ` ~ ~ ^ ^ ` _ ` - · : Plantez une graine avec nous ! ' , _ - : - ;
- - , - `_ -`, .
- - , - * ; -. _- ~ . , . . _ - ` '-. ,- '-. -^. `' ._ -·.`
- ^ ., · - , ; `, `;. . ; _ -
-.-; ; ¨¨ ^^ _ ) . . , . . . . . .- ` _ - * ` "`', _ ; , ;, :-
- _ ` ¨ `_ ' `_,.- ` ;-. ''
- _ · `'^^ ^
-_ ` ^ ¨ · _ - " ` * - ; - _ .·
- `` - _ - : ; _ ` "' - : . ,. _ .-__ ¨¨ ;· ·
- ` _ , _ `_^ ~ ` - \ ` ^^^ ^^ ^^ ^~ `- ^ * , -
- ~ ~_ _ ` _ "" _.
-
- </pre>
- </div>
- <div id="liens">
- <a href="https://guide.deuxfleurs.fr/vie_associative/cgu/">CGU</a><span role="separator"> · </span><a href="https://guide.deuxfleurs.fr/vie_associative/gestion-des-risques/">Gestion des risques</a><span role="separator"> · </span><a href="https://guide.deuxfleurs.fr/vie_associative/mentions-legales">Mentions légales</a><span role="separator"> · </span><a href="https://guide.deuxfleurs.fr/operations/sources">Sources</a>
- </div>
- </footer>
- </div>
- <!-- script animations -->
- <script src="script-bon.js"></script>
-</body>
-</html>
+<!DOCTYPE html>
<!--
Un site web imaginé, planté et arrosé avec patience et amour par Esther Bouquet (estherbouquet.com) et Quentin Dufour (quentin.dufour.io)
Illustrations en ascii par Esther Bouquet.
Script d'animation par Matt Jacobson.
Illustration des valeurs par Ronce
-->
<html lang="fr">
<head>
<meta http-equiv="Content-Security-Policy" content="default-src 'none'; img-src 'self'; script-src 'self'; style-src 'self'">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, height=device-height, minimum-scale=1.0">
<meta name="color-scheme" content="dark">
<meta name="color-scheme" content="light">
<!-- balises meta basiques pour moteurs de recherche -->
<meta name="description" content="Association qui œuvre pour un internet convivial en utilisant des infrastructures et outils sobres.">
<meta name="keywords" content="association, logiciels libres, alternative, serveurs">
<!-- balises meta utilisées pour partage sur réseaux sociaux afin d'être sûr.es que ce soit ces infos qui soient récupérées -->
<meta property="og:title" content="Deuxfleurs : fabriquons un internet convivial">
<meta property="og:type" content="website">
<meta property="og:image" content="https://deuxfleurs.fr/img/deuxfleurs-common-ratio.jpg">
<meta property="og:url" content="https://deuxfleurs.fr/">
<meta property="og:description" content="Association qui œuvre en utilisant ses propres infrastructures, des outils sobres et des valeurs fortes.">
<!-- balises meta spécifiques à twitter cf Summary Card -->
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="Deuxfleurs : fabriquons un internet convivial">
<meta name="twitter:description" content="Association qui œuvre en utilisant ses propres infrastructures, des outils sobres et des valeurs fortes.">
<meta name="twitter:image" content="https://deuxfleurs.fr/img/deuxfleurs-square.jpg"> <!-- ratio 1:1 | format carré nécessairement en jpg, png, gif ou webp. -->
<meta name="twitter:image:alt" content="Parterre de fleurs différentes dessinées en ascii art">
<!-- balises meta spécifiques à twitter cf Summary Card with large image -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:image" content="https://deuxfleurs.fr/img/deuxfleurs-rect.jpg"> <!-- ratio 2:1 -->
<title>Deuxfleurs : fabriquons un internet convivial</title>
<!-- liens vers style css et favicon-->
<link rel="stylesheet" type="text/css" href="css/layout.css">
<link rel="stylesheet" type="text/css" href="css/home.css">
<link rel="shortcut icon" href="./img/favicon.ico" type="image/x-icon">
</head>
<body>
<nav role="navigation" aria-label="menu d'accès" id="menu">
<ul aria-label="menu principal" role="menubar" aria-orientation="vertical">
<li role="none">
<a href="https://guichet.deuxfleurs.fr/" role="menuitem" aria-label="compte" class="icone">
<pre aria-hidden="true">
(COMPTE)
!!___/\
|___/__\
|| || .|
||_||__| </pre>
<pre class="img_top" aria-hidden="true">
( ))) )
!!___/\
|___/__\
||*|| .|
||_||__| </pre>
</a>
</li>
<li role="none">
<a href="https://guide.deuxfleurs.fr/" role="menuitem" aria-label="wiki" class="icone">
<pre aria-hidden="true">
((((((()
|------|
| WIKI |
|------|
|______| </pre>
<pre class="img_top" aria-hidden="true">
((((((()
/-----/|
/-----/ |
/_____/ |
|______| </pre>
</a>
</li>
<li role="none">
<a href="https://plume.deuxfleurs.fr/" role="menuitem" aria-label="blog" class="icone">
<pre aria-hidden="true">
|¨¨¨¨|
|BLOG|
(|____|)
|o == .|
\______/ </pre>
<pre class="img_top" aria-hidden="true">
|~~ |
| ~~ |
(|____|)
|o == .|
\______/ </pre>
</a>
</li>
</ul>
</nav>
<div id="container">
<header>
<h1 id="deuxfleurs"><span role="img" aria-label="2 emojis fleur blanche">💮💮 </span>deuxfleurs</h1>
</header>
<main aria-label="contenu de la page web">
<div id="jardin">
<div id="illustration-accueil" class="noscroll" role="img" aria-label="deux fleurs dessinées en ascii animées">
<!-- séquences de l'animation qui est lancée grâce à l'avant avant dernière ligne -->
<pre class="center">
'\ ; /'
·`.;.;.`·
·— · · —·
·`';.;'`·
'/ ; \'
.-.
.( ; ;
.-. (_.():')
_( ' ; /(' ; .)
( `(·)` ; ``-'
',_' `·,'
`-`\| +---------------------+
. /) | B i e n v e n u e |
(\|/ +---------------------+
| | |
.,.,\/,}\|//,,, ;/,,\/ | , \,,,;/. ;.;, |,,,,;,;..
</pre>
<pre class="center hide">
'\ ; /'
·`.;.;.`·
·— · · —·
·`';.;'`·
'/ ; \'
.-.
.( ; ;
.-. (_.():')
_( ' ; /(' ; .)
( `(·)` ; ``-'
',_' `·,'
`-`\| +---------------------+
. /) | B i e n v e n u e |
(\|/ +---------------------+
| | |
.,.,\/,}\|//,,, ;/,,\/ | , \,,,;/. ;.;, |,,,,;,;..
</pre>
<pre class="center hide">
'\ ; /'
·`.;.;.`·
·— · · —·
·`';.;'`·
'/ ; \'
.-.
.( ; ;
.-. (_.():')
_( ' ; /(' ; .)
( `(·)` ; ``-'
',_' `·,'
`-`\| +---------------------+
. /) | B i e n v e n u e |
(\|/ +---------------------+
| | |
.,.,\/,}\|//,,, ;/,,\/ | , \,,,;/. ;.;, |,,,,;,;..
</pre>
<pre class="center hide">
-., '\ ; /'
';.) ·`.;.;.`·
, ) ·— · · —·
) ) ' ·`';.;'`·
'/ ; \'
.-.
.( ; ;
.-. (_.():')
_( ' ; /(' ; .)
( `(·)` ; ``-'
',_' `·,'
`-`\| +---------------------+
. /) | B i e n v e n u e |
(\|/ +---------------------+
| | |
.,.,\/,}\|//,,, ;/,,\/ | , \,,,;/. ;.;, |,,,,;,;..
</pre>
<pre class="center hide">
- -., '\ ; /'
( ' ';.) ·`.;.;.`·
('. ( , ) ·— · · —·
(.';.) ) ' ·`';.;'`·
'/ ; \'
.-.
.( ; ;
.-. (_.():')
_( ' ; /(' ; .)
( `(·)` ; ``-'
',_' `·,'
`-`\| +---------------------+
. /) | B i e n v e n u e |
(\|/ +---------------------+
| | |
.,.,\/,}\|//,,, ;/,,\/ | , \,,,;/. ;.;, |,,,,;,;..
</pre>
<pre class="center hide">
- -., '\ ; /'
( ' ';.) ·`.;.;.`·
('. ( , ) ·— · · —·
(.';.) ) ' ·`';.;'`·
'/ ; \'
.-.
.( ; ;
.-. (_.():')
_( ' ; /(' ; .)
( `(·)` ; ``-'
',_' `·,'
`-`\| +---------------------+
. /) | B i e n v e n u e |
(\|/ +---------------------+
| | |
.,.,\/,}\|//,,, ;/,,\/ | , \,,,;/. ;.;, |,,,,;,;..
</pre>
<pre class="center hide">
- -., '\ ; /'
( ' ';.) ·`.;.;.`·
('. ( , ) ·— · · —·
(.';.) ) ' ·`';.;'`·
'/ ; \'
.-.
.( ; ;
.-. (_.():')
_( ' ; /(' ; .)
( `(·)` ; ``-'
',_' `·,'
`-`\| +---------------------+
. /) | B i e n v e n u e |
(\|/ +---------------------+
| | |
.,.,\/,}\|//,,, ;/,,\/ | , \,,,;/. ;.;, |,,,,;,;..
</pre>
<pre class="center hide">
- -., '\ ; /'
( ' ';.) ·`.;.;.`·
('. ( , ) ·— · · —·
(.';.) ) ' ·`';.;'`·
. ; . '/ ; \'
.-.,
.( ; ;
.-. (_.():')
_( ' ; /(' ; .)
( `(·)` ; ``-'
',_' `·,'
`-`\| +---------------------+
. /) | B i e n v e n u e |
(\|/ +---------------------+
| | |
.,.,\/,}\|//,,, ;/,,\/ | , \,,,;/. ;.;, |,,,,;,;..
</pre>
<pre class="center hide">
- -., '\ ; /'
( ' ';.) ·`.;.;.`·
('. ( , ) ·— · · —·
(.';.) ) ' ·`';.;'`·
| '/ ; \'
.-.` ;
.( ; ; , |
.-. (_.():')
_( ' ; /(' ; .) .
( `(·)` ; ``-' |
',_' `·,' . ;
`-`\| , +---------------------+
. /) | B i e n v e n u e |
(\|/ . +---------------------+
| | |
.,.,\/,}\|//,,, ;/,,\/ | , \,,,;/. ;.;, |,,,,;,;..
</pre>
<pre class="center hide">
- -., '\ ; /'
( ' ';.) ·`.;.;.`·
('. ( , ) ·— · · —·
(.';.) ) ' ·`';.;'`·
; ` '/ ; \'
,.-. | |
.( ; ; . ;
.-. (_.():') |
_( ' ; /(' ; .) ;
( `(·)` ; ``-' | .
',_' `·,' . | |
`-`\| ` +---------------------+
. /) , | B i e n v e n u e |
(\|/ '; +---------------------+
| . ; | |
.,.,\/,}\|//,,, ;/,,\/ | , \,,,;/. ;.;, |,,,,;,;..
</pre>
<pre class="center hide">
- -., '\ ; /'
( ' ';.) ·`.;.;.`·
('. ( , ) ·— · · —·
(.';.) ) ' ·`';.;'`·
, '/ ; \'
.-. "
.( ; ; :
.-. (_.():')
_( ' ; /(' ; .) ` ,
( `(·)` ; ``-' | `
',_' `·,' ; ,
`-`\| , . | +---------------------+
. /) , | B i e n v e n u e |
(\|/ | +---------------------+
| | ; , ,| |
.,.,\/,}\|//,,,.;/,,\/; | , \,,,;/. ;.;, |,,,,;,;..
</pre>
<pre class="center hide">
- -., '\ ; /'
( ' ';.) ·`.;.;.`·
('. ( , ) ·— · · —·
(.';.) ) ' ·`';.;'`·
'/ ; \'
.-.
.( ; ; ,
.-. (_.():') ;
_( ' ; /(' ; .) :
( `(·)` ; ``-' " ;
',_' `·,' ' `
`-`\| ` ,+---------------------+
. /) , | | B i e n v e n u e |
(\|/ , ; +---------------------+
| , . |. | |
.,.,\/,}\|//,,, ;/,,\/ :| , \,,,;/. ;.;, |,,,,;,;..
</pre>
<pre class="center hide">
- -., '\ ; /'
( ' ';.) ·`.;.;.`·
('. ( , ) ·— · · —·
(.';.) ) ' ·`';.;'`·
'/ ; \'
.-.
.( ; ;
.-. (_.():')
_( ' ; /(' ; .)
( `(·)` ; ``-'
',_' `·,' ,
`-`\| " ; +---------------------+
. /) ; | B i e n v e n u e |
(\|/ ' +---------------------+
| ` ` | |
.,.,\/,}\|//,,, ;/,,\/: | , \,,,;/. ;.;, |,,,,;,;..
</pre>
<pre class="center hide">
- -., '\ ; /'
( ' ';.) ·`.;.;.`·
('. ( , ) ·— · · —·
(.';.) ) ' ·`';.;'`·
'/ ; \'
.-.
.( ; ;
.-. (_.():')
_( ' ; /(' ; .)
( `(·)` ; ``-'
',_' `·,'
`-`\| +---------------------+
. /) | B i e n v e n u e |
(\|/ +---------------------+
| | |
.,.,\/,}\|//,,, ;/,,\/ | , \,,,;/. ;.;, |,,,,;,;..
</pre>
<pre class="center hide">
- -., '\ ; /'
( ' ';.) ·`.;.;.`·
('. ( , ) ·— · · —·
(.';.) ) ' ·`';.;'`·
'/ ; \'
.-.
.( ; ;
.-. (_.():')
_( ' ; /(' ; .)
( `(·)` ; ``-'
',_' `·,'
`-`\| +---------------------+
. /) | B i e n v e n u e |
(\|/ +---------------------+
| | |
.,.,\/,}\|//,,, ;/,,\/ | , \,,,;/. ;.;, |,,,,;,;..
</pre>
<pre class="center hide">
- -., '\ ; /'
( ' ';.) ·`.;.;.`·
('. ( , ) ·— · · —·
(.';.) ) ' ·`';.;'`·
'/ ; \'
.-.
.( ; ;
.-. (_.():')
_( ' ; /(' ; .)
( `(·)` ; ``-'
',_' `·,'
`-`\| +---------------------+
. /) | B i e n v e n u e |
(\|/ +---------------------+
| | |
.,.,\/,}\|//,,, ;/,,\/ | , \,,,;/. ;.;, |,,,,;,;..
</pre>
<pre class="center hide">
- -., '\ ; /'
( ' ';.)`.;.;.`·
('. ( , )· · —·
(.';.) ) '`';.;'`·
'/ ; \'
.-.
.( ; ;
.-. (_.():')
_( ' ; /(' ; .)
( `(·)` ; ``-'
',_' `·,'
`-`\| +---------------------+
. /) | B i e n v e n u e |
(\|/ +---------------------+
| | |
.,.,\/,}\|//,,, ;/,,\/ | , \,,,;/. ;.;, |,,,,;,;..
</pre>
<pre class="center hide">
- -.,; /'
( ' ';.)`·
('. ( , )—·
(.';.) ) '`·
'/ ; \'
.-.
.( ; ;
.-. (_.():')
_( ' ; /(' ; .)
( `(·)` ; ``-'
',_' `·,'
`-`\| +---------------------+
. /) | B i e n v e n u e |
(\|/ +---------------------+
| | |
.,.,\/,}\|//,,, ;/,,\/ | , \,,,;/. ;.;, |,,,,;,;..
</pre>
<pre class="center hide">
'\ ;- -.,;
·`.( ' ';.
·—('. ( ,
·`'(.';.) )
'/ ; \'
.-.
.( ; ;
.-. (_.():')
_( ' ; /(' ; .)
( `(·)` ; ``-'
',_' `·,'
`-`\| +---------------------+
. /) | B i e n v e n u e |
(\|/ +---------------------+
| | |
.,.,\/,}\|//,,, ;/,,\/ | , \,,,;/. ;.;, |,,,,;,;..
</pre>
<pre class="center hide">
'\ ; /' -
·`.;.;.`·(
·— · ·('. (
·`';.;'`·(.'
'/ ; \'
.-.
.( ; ;
.-. (_.():')
_( ' ; /(' ; .)
( `(·)` ; ``-'
',_' `·,'
`-`\| +---------------------+
. /) | B i e n v e n u e |
(\|/ +---------------------+
| | |
.,.,\/,}\|//,,, ;/,,\/ | , \,,,;/. ;.;, |,,,,;,;..
</pre>
<pre class="center hide">
'\ ; /'
·`.;.;.`·
·— · · —·
·`';.;'`·
'/ ; \'
.-.
.( ; ;
.-. (_.():')
_( ' ; /(' ; .)
( `(·)` ; ``-'
',_' `·,'
`-`\| +---------------------+
. /) | B i e n v e n u e |
(\|/ +---------------------+
| | |
.,.,\/,}\|//,,, ;/,,\/ | , \,,,;/. ;.;, |,,,,;,;..
</pre>
</div>
<p>Fabriquons un internet convivial ⤵</p>
</div>
<h2 id="infras">Avec nos propres infrastructures</h2>
<div id="rennes" role="img" aria-label="illustration de trois serveurs informatiques rangés dans la bibliothèque d'un salon">
<!--diode qui clignote ?-->
<pre class="center">/¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨\
| || || || |
| || || || |
| || || || |
| ||_____________||_____________|| |
| *——————————————————————————————* |
| |
| |
| |
|_____________________ ._________________________. |
| ` |!"""""""""""|"""""""""""!| (\__ |
| | || o |.-. _ _.-.|| :=))))-, |
| | || || |_| |•| ||| (/ ' -; |
| . . | ||"""""""""""||π| |·| |◦||| /, __/) |
| | _._ |! || |*| |◦|-|!| .·((((=: |
| |.' ` |! ________ || | |x|·| |!| ||| \) |
|____________________ / / |||\\\\ - •| |"""""""""""|| / \ |
| )| / |||________| | _ _ || / \ |
|====================/ / |||\\\\ - o| || |_ |`|_ || | | |
| / |||________| ||*| |_|M|*||| | | |
|________________________/ |||\\\\ - •| || |O|-| |S||| \ / |
|————————————————————————........|||________| ||P|¨|E|`| |||........':___.'.....|
| //\\ !!———————————————————————!! """"" |
| \\ |
\_______________________________________________________________________________/</pre>
<pre class="center hide">/¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨\
| || || || |
| || || || |
| || || || |
| ||_____________||_____________|| |
| *——————————————————————————————* |
| |
| |
| |
|_____________________ ._________________________. |
| ` |!"""""""""""|"""""""""""!| (\__ |
| | || o |.-. _ _.-.|| :=))))-, |
| | || || |_| |•| ||| (/ ' -; |
| . . | ||"""""""""""||π| |·| |◦||| /, __/) |
| | _._ |! || |*| |◦|-|!| .·((((=: |
| |.' ` |! ________ || | |x|·| |!| ||| \) |
|____________________ / / |||\\\\ - •| |"""""""""""|| / \ |
| )| / |||________| | _ _ || / \ |
|====================/ / |||\\\\ - •| || |_ |`|_ || | | |
| / |||________| ||*| |_|M|*||| | | |
|________________________/ |||\\\\ - o| || |O|-| |S||| \ / |
|————————————————————————........|||________| ||P|¨|E|`| |||........':___.'.....|
| //\\ !!———————————————————————!! """"" |
| \\ |
\_______________________________________________________________________________/</pre>
<pre class="center hide">/¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨\
| || || || |
| || || || |
| || || || |
| ||_____________||_____________|| |
| *——————————————————————————————* |
| |
| |
| |
|_____________________ ._________________________. |
| ` |!"""""""""""|"""""""""""!| (\__ |
| | || o |.-. _ _.-.|| :=))))-, |
| | || || |_| |•| ||| (/ ' -; |
| . . | ||"""""""""""||π| |·| |◦||| /, __/) |
| | _._ |! || |*| |◦|-|!| .·((((=: |
| |.' ` |! ________ || | |x|·| |!| ||| \) |
|____________________ / / |||\\\\ - •| |"""""""""""|| / \ |
| )| / |||________| | _ _ || / \ |
|====================/ / |||\\\\ - o| || |_ |`|_ || | | |
| / |||________| ||*| |_|M|*||| | | |
|________________________/ |||\\\\ - o| || |O|-| |S||| \ / |
|————————————————————————........|||________| ||P|¨|E|`| |||........':___.'.....|
| //\\ !!———————————————————————!! """"" |
| \\ |
\_______________________________________________________________________________/</pre>
<pre class="center hide">/¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨\
| || || || |
| || || || |
| || || || |
| ||_____________||_____________|| |
| *——————————————————————————————* |
| |
| |
| |
|_____________________ ._________________________. |
| ` |!"""""""""""|"""""""""""!| (\__ |
| | || o |.-. _ _.-.|| :=))))-, |
| | || || |_| |•| ||| (/ ' -; |
| . . | ||"""""""""""||π| |·| |◦||| /, __/) |
| | _._ |! || |*| |◦|-|!| .·((((=: |
| |.' ` |! ________ || | |x|·| |!| ||| \) |
|____________________ / / |||\\\\ - o| |"""""""""""|| / \ |
| )| / |||________| | _ _ || / \ |
|====================/ / |||\\\\ - •| || |_ |`|_ || | | |
| / |||________| ||*| |_|M|*||| | | |
|________________________/ |||\\\\ - •| || |O|-| |S||| \ / |
|————————————————————————........|||________| ||P|¨|E|`| |||........':___.'.....|
| //\\ !!———————————————————————!! """"" |
| \\ |
\_______________________________________________________________________________/</pre>
<pre class="center hide">/¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨\
| || || || |
| || || || |
| || || || |
| ||_____________||_____________|| |
| *——————————————————————————————* |
| |
| |
| |
|_____________________ ._________________________. |
| ` |!"""""""""""|"""""""""""!| (\__ |
| | || o |.-. _ _.-.|| :=))))-, |
| | || || |_| |•| ||| (/ ' -; |
| . . | ||"""""""""""||π| |·| |◦||| /, __/) |
| | _._ |! || |*| |◦|-|!| .·((((=: |
| |.' ` |! ________ || | |x|·| |!| ||| \) |
|____________________ / / |||\\\\ - o| |"""""""""""|| / \ |
| )| / |||________| | _ _ || / \ |
|====================/ / |||\\\\ - o| || |_ |`|_ || | | |
| / |||________| ||*| |_|M|*||| | | |
|________________________/ |||\\\\ - o| || |O|-| |S||| \ / |
|————————————————————————........|||________| ||P|¨|E|`| |||........':___.'.....|
| //\\ !!———————————————————————!! """"" |
| \\ |
\_______________________________________________________________________________/</pre>
<pre class="center hide">/¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨\
| || || || |
| || || || |
| || || || |
| ||_____________||_____________|| |
| *——————————————————————————————* |
| |
| |
| |
|_____________________ ._________________________. |
| ` |!"""""""""""|"""""""""""!| (\__ |
| | || o |.-. _ _.-.|| :=))))-, |
| | || || |_| |•| ||| (/ ' -; |
| . . | ||"""""""""""||π| |·| |◦||| /, __/) |
| | _._ |! || |*| |◦|-|!| .·((((=: |
| |.' ` |! ________ || | |x|·| |!| ||| \) |
|____________________ / / |||\\\\ - o| |"""""""""""|| / \ |
| )| / |||________| | _ _ || / \ |
|====================/ / |||\\\\ - •| || |_ |`|_ || | | |
| / |||________| ||*| |_|M|*||| | | |
|________________________/ |||\\\\ - o| || |O|-| |S||| \ / |
|————————————————————————........|||________| ||P|¨|E|`| |||........':___.'.....|
| //\\ !!———————————————————————!! """"" |
| \\ |
\_______________________________________________________________________________/</pre>
</div>
<div id="orsay" role="img" aria-label="illustration de trois serveurs informatiques rangés sur l'étagère d'un bureau">
<pre class="center">/¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨\
| |
| |
| |
| ________ \./ |
| _ |•- \\\\| \./ —:::— |
| _|M|-._ _ .|________| —;;:— /.\ |
| _|·|A|◦| | | |o- \\\\| : / |
| |*| |T|-| | |_ |________|. (*´¨)\_/))`. |
| | | |H| | |*| | |o- \\\\| \) ./.\) |
| _____|_|_|_|_|_|_|_|____|________|________\__/___________ |
| """"""""""""""""""""""""""""""""""""""""""""""""""""""""" |
| _____ _____________________ _______________ |
| . . |.———————————————————.| ——————————————— |
| | | _____ || || |_|_|_|_|_|_|_| |
| | | . . || || |_|_|_|_|_|x|_| |
| ._____. | | || || |_|_|_|x|_|_|_| |
| | | || || |_|_|_|_|_|_|_| |
| ._____. |.———————————————————.| |_|_|_|_______| |
| `—————————————————————' |
| _________________/ \_________________ |
| . ` /_____\ ` . |
| .` ________________ ________ `. |
| .` /________________\ \________. `. |
\___________`_______________________________________________________`___________/</pre>
<pre class="center hide">/¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨\
| |
| |
| |
| ________ \./ |
| _ |o- \\\\| \./ —:::— |
| _|M|-._ _ .|________| —;;:— /.\ |
| _|·|A|◦| | | |•- \\\\| : / |
| |*| |T|-| | |_ |________|. (*´¨)\_/))`. |
| | | |H| | |*| | |o- \\\\| \) ./.\) |
| _____|_|_|_|_|_|_|_|____|________|________\__/___________ |
| """"""""""""""""""""""""""""""""""""""""""""""""""""""""" |
| _____ _____________________ _______________ |
| . . |.———————————————————.| ——————————————— |
| | | _____ || || |_|_|_|_|_|_|_| |
| | | . . || || |_|_|_|_|_|x|_| |
| ._____. | | || || |_|_|_|x|_|_|_| |
| | | || || |_|_|_|_|_|_|_| |
| ._____. |.———————————————————.| |_|_|_|_______| |
| `—————————————————————' |
| _________________/ \_________________ |
| . ` /_____\ ` . |
| .` ________________ ________ `. |
| .` /________________\ \________. `. |
\___________`_______________________________________________________`___________/</pre>
<pre class="center hide">/¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨\
| |
| |
| |
| ________ \./ |
| _ |o- \\\\| \./ —:::— |
| _|M|-._ _ .|________| —;;:— /.\ |
| _|·|A|◦| | | |o- \\\\| : / |
| |*| |T|-| | |_ |________|. (*´¨)\_/))`. |
| | | |H| | |*| | |•- \\\\| \) ./.\) |
| _____|_|_|_|_|_|_|_|____|________|________\__/___________ |
| """"""""""""""""""""""""""""""""""""""""""""""""""""""""" |
| _____ _____________________ _______________ |
| . . |.———————————————————.| ——————————————— |
| | | _____ || || |_|_|_|_|_|_|_| |
| | | . . || || |_|_|_|_|_|x|_| |
| ._____. | | || || |_|_|_|x|_|_|_| |
| | | || || |_|_|_|_|_|_|_| |
| ._____. |.———————————————————.| |_|_|_|_______| |
| `—————————————————————' |
| _________________/ \_________________ |
| . ` /_____\ ` . |
| .` ________________ ________ `. |
| .` /________________\ \________. `. |
\___________`_______________________________________________________`___________/</pre>
</div>
<p id="txt_infras" lang="fr">Nous fournissons des services numériques garantis "sans datacenter". À la place, nous utilisons moins d'une dizaine de vieux ordinateurs reconditionnés à nos domiciles qui peuvent fournir des services numériques à plusieurs dizaines de milliers de personnes. Actuellement ces ordinateurs sont situés à Orsay, Lille et Bruxelles. Nous avons également des machines à Suresnes pour les sauvegardes. <a href="https://guide.deuxfleurs.fr/infrastructures/">En savoir plus</a>. <br><br>Cette infrastructure atypique nous mène à développer de nouveaux logiciels libres. Si vous êtes dans la technique, vous pourriez être intéressé·e par <a href="https://garagehq.deuxfleurs.fr/">Garage</a>, <a href="https://bottin.eu">Bottin</a>, <a href="https://git.deuxfleurs.fr/lx/tricot">Tricot</a>, <a href="https://git.deuxfleurs.fr/Deuxfleurs/diplonat">Diplonat</a> et nos <a href="https://git.deuxfleurs.fr/Deuxfleurs">autres projets</a>.</p>
<h2 id="outils">Avec nos services sobres</h2>
<div id="ordinateur">
<pre class="center" aria-hidden="true">
_______________________________________________________________________
/!¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨!\
||—————————————————————————————————————————————————————————————— — o x ||
_ || ||
_ / `\ _ || , ,, .;, ;., ||
_ ( `'.\ /.'` ) || ;. ;., ;,.,. ||
_ / `\ '_ .(())._.' || ,, ,;/. ;.;, ;, |,, ||
( `'.\ /.'` ),`""`, '- || ,,,;, ' {.} ||
'._.(())._.'-'/ \'-._) || .,:.,.,\/,}.;. ;.. , ||
-' ,`""`, '- /\_,/ || (., ,;, ._ ;. (\|/.; ,: ||
(_.-'/ \'-._) ,-``. || -; ;.- ..,, ` ||
\_,/\ / __/ /` || ,;,, .; ||
\ | / _.' || ;,. ;.. deuxfleurs.fr ||
|| \_,/ || . ,,\|/ ,, ;/,, ||
, ----`-- , || . ,*;-. .;. ;,;.. . ,; ||
|-::\|/..-| || ;` `. .,.: ;, ,,;,; ||
|:. / . | || (( ) ;:., ;. , ||
|:./ /\. | || ;, .., :.;; ,.,:.,.,\ (:) ||
|:.`.\/ | || ...., ,.,: : .,. ||
|:. |.`. | || ..., |/.,;| ;../ ||
|:. /| \ | ||;... .:,;.,. .;..,..,., ||
|:.. `. | | || ,,,,,\/,}/,,, ;/,,\/ , \,,,;/. ;.;, |,, ;...,|, ||
.:.`; . |!_____________________________________________________________________!|
|:. - -.._| !———————————————————————————————————————————————————————————————————————!
`-.____.-' .`-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-|-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-`.
.`-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-/-----------\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-`.
.` /_________|_________\ `.
{_________________________________________________________________________________}
"—————————————————————————————————————————————————————————————————————————————————"</pre>
</div>
<section id="liste_outils" aria-label="liste des outils proposés par Deuxfleurs">
<a href="https://guide.deuxfleurs.fr/prise_en_main/matrix/" role="link" aria-label="messagerie instantanée avec Matrix">
<div id="discussion" aria-hidden="true">
<pre class="center">!¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨!
| x|
| discussion |
| ~~~~~~ ! ||
|| ~~~~~ ! |
| ~~ ~~ ? ||
|| ~~ ~~ ~~~~ ~~~~~~~~ |
|| ~~~~~~~~~~~ ? |
!__________________________!</pre>
<p>Messagerie instantanée avec Matrix</p>
</div>
</a>
<a href="https://guide.deuxfleurs.fr/prise_en_main/jitsi/" role="link" aria-label="visioconférence avec Jitsi">
<div id="visio" aria-hidden="true">
<pre class="center">!¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨!
| .,:¨¨¨:,. [__]|
| visio !' '! |
| (. • • .) |
| ! ~ ! |
| \ `-' / |
| _.`. .'._ |
| _.-~' \-/ `~-._ |
!__________________________!</pre>
<p>Visioconférence avec Jitsi</p>
</div>
</a>
<a href="https://guide.deuxfleurs.fr/prise_en_main/web/" role="link" aria-label="hébergement de site web">
<div id="sites-web" aria-hidden="true">
<pre class="center">!¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨!
|——————————————————————————|
| sites ______________ x|
| ----|web x|-- |
| .———| ~~~~~~~~~~ |—. |
| | | .————..————. | | |
| |___| |____||____| |_| |
| ~~~~|______________|~~ |
!__________________________!</pre>
<p>Hébergement de site web </p>
</div>
</a>
<a href="https://guide.deuxfleurs.fr/prise_en_main/email/" role="link" aria-label="email (beta)">
<div id="emails" aria-hidden="true" >
<pre class="center">!¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨!
| | • ~~~~~~~~~~~~~~ |
| mails | • ~~~~~~~~~~~~~~ |
| | • ~~~~~~~~~~~~~~ |
| |o ——————————————— |
| |o ——————————————— |
| |o ——————————————— |
| [] [] |o ——————————————— |
!__________________________!</pre>
<p>Email (beta)</p>
</div>
</a>
<a href="https://guide.deuxfleurs.fr/prise_en_main/cryptpad/" role="link" aria-label="suite collaborative avec CryptPad">
<div id="collaboration" aria-hidden="true">
<pre class="center">!¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨!
| |_|_|_|_|_|_|_|_| []|
| col- _______________ |
| |~ lab ~~~~~~~~~| |
| |~ ora ~~~~~~~~~| |
| |~ tion ~~~~~~~~| |
| |~~~~~~~~~~~~~~~| |
| |~~~~~~~~~~~~~~~| |
!_____|_______________|____!</pre>
<p>Suite collaborative avec CryptPad</p>
</div>
</a>
<a href="https://guide.deuxfleurs.fr/prise_en_main/plume/" role="link" aria-label="blog décentralisé avec Plume">
<div id="blog" aria-hidden="true">
<pre class="center">!¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨¨!
| ______________ |
| blog —————————————— |
| .____________. |
| |____________| |
| ~~~~~~~~~~~~~~ |
| ~~~~~~~~~~~~~~ |
| ~~~~~~~~~~ [_] |
!__________________________!</pre>
<p>Blog décentralisé avec Plume</p>
</div>
</a>
</section>
<div id="txt_outils">
<p>Remplacez WhatsApp, Slack, Gmail, Zoom ou encore Google Drive par des outils Deuxfleurs. Nous proposons des alternatives sobres et non-marchandes à ces services, pour que vous restiez en contact avec votre entourage, votre association ou votre collectif.</p>
<p>Envie de faire entendre votre voix sur Internet ? Nous mettons à disposition plusieurs outils de publication sur le web allant de la plateforme de blog partagée à la publication de sites web en autonomie.</p>
<p>Prenez contact avec nous, nous vous aiderons à identifier les outils dont vous avez besoin et nous vous accompagnerons dans votre transition. ⤵</p>
</div>
<h2 id="valeurs">Avec des valeurs fortes</h2>
<div id="ronce">
<img src="./ronce.webp" loading="lazy" alt="Deux personnages qui regardent et s'avancent vers une maison cabane perchée dans un arbre, illustrant notre envie d'un internet plus éthique.">
</div>
<section id="liste_valeurs">
<p id="coop">La coopération <span class="description">- eg. promouvoir l'intéropérabilité, les communs, le libre, et les formats de données ouverts </span></p>
<p id="autonomie">L'autonomie <span class="description">- eg. gérer nos propres moyens de communications, prendre nos propres décisions</span></p>
<p id="solidarite">La solidarité <span class="description">- eg. partager le savoir, partager les ressources informatiques, s'entraider pour la gestion des services</span></p>
<p id="liberte">La liberté <span class="description">- eg. permettre à toutes et tous de s'exprimer, respecter la vie privée</span></p>
<p id="suivre"><a href="https://plume.deuxfleurs.fr/timeline/1">Suivez notre actualité, réflexions et analyses sur notre blog Plume</a></p>
</section>
<h2 id="connaissance">Faisons connaissance</h2>
<div id="txt_connaissance">
<p lang="fr">L'accès à nos services est à prix libre. Nous estimons leur coût à 15€/an/compte pour leur maintien en fonctionnement et recommandons le double pour permettre à l'association de se développer. Il est conditionné par les ressources disponibles, à la fois matérielles et humaines.</p>
<p lang="fr">Pour accéder à nos services ou simplement discuter avec nous, écrivez à <span style="text-decoration: underline;">coucou[@]deuxfleurs.fr</span>, rejoignez-nous sur le salon Matrix <span style="text-decoration: underline;">#deuxfleurs:deuxfleurs.fr</span> ou rencontrez-nous à : </p>
<ul>
<!-- L'historique des événements passés est sur evenements_passes.html -->
<!-- Mars 2024 -->
<li role="none"><a href="https://jitsi.deuxfleurs.fr/r%C3%A9union_mensuelle_deuxfleurs">Réunion mensuelle «au coin du feu»</a> en ligne, <span class="highlight">le 5 mars 2024 à 19h00</span>.<br>Une fois par mois nous organisons une réunion en ligne informelle. C'est le bon moment pour venir faire un coucou si vous voulez parler à des gens de vive voix numérique.</li>
<li role="none"><a href="https://bbb.paquerette.eu/b/dom-67q-irl-nfc">Réunion mensuelle du collectif CHATONS</a> en ligne, <span class="highlight">le 12 mars 2024 à 20h00</span>.<br>Une fois par mois a lieu une réunion entre les membres du collectif <a href=https://www.chatons.org/>CHATONS</a>.</li>
<li role="none"><a href="#">Barcamp Interne</a> au Couvent des Clarisses à Roubaix, <span class="highlight">le 15, 16 et 17 mars</span>.<br> Les membres de Deuxfleurs prennent le temps de se retrouver et de discuter de l'association. N'hésitez pas à nous contacter pour passer nous voir le samedi soir.</li>
<!-- Avril 2024 -->
<li role="none"><a href="https://jitsi.deuxfleurs.fr/r%C3%A9union_mensuelle_deuxfleurs">Réunion mensuelle «au coin du feu»</a> en ligne, <span class="highlight">le 2 avril 2024 à 19h00</span>.<br>Une fois par mois nous organisons une réunion en ligne informelle. C'est le bon moment pour venir faire un coucou si vous voulez parler à des gens de vive voix numérique.</li>
<li role="none"><a href="#">Permanence associative autour du Libre</a> au Café Citoyen à Lille, <span class="highlight">le 30 avril 2024 à 19h30</span>.<br> La permanence associative autour du Libre est une manifestation conviviale, ouverte à toutes et tous, organisée le dernier mardi de chaque mois, et regroupant les collectifs Chtinux, Raoull, Deuxfleurs, Mycélium, CLX et Cliss XXI.
</ul>
</div>
<div id="calendrier">
<!--
Pour générer les mois suivants, voir : https://github.com/superboum/code-bazaar/tree/master/algo/calendar
Notez que les mois sont déjà générés jusqu'à décembre 2024 dans ce fichier : https://github.com/superboum/code-bazaar/blob/master/algo/calendar/calendars.txt
-->
<div id="mois_actuel" role="img" aria-label="calendrier de nos jours de permanence prévus pour ce mois-ci">
<pre aria-hidden="true">.——————————————————————————————————————.
| CALENDRIER MARS 2024 |
|——————————————————————————————————————|
| ———— ———— ———— |
| | 01 | 02 | 03 | |
| ———— ———— ———— ———— ———— ———— ———— |
| | 04 |<span class="highlight"> 05 </span>| 06 | 07 | 08 | 09 | 10 | |
| ———— ———— ———— ———— ———— ———— ———— |
| | 11 |<span class="highlight"> 12 </span>| 13 | 14 |<span class="highlight"> 15 </span>|<span class="highlight"> 16 </span>|<span class="highlight"> 17 </span>| |
| ———— ———— ———— ———— ———— ———— ———— |
| | 18 | 19 | 20 | 21 | 22 | 23 | 24 | |
| ———— ———— ———— ———— ———— ———— ———— |
| | 25 | 26 | 27 | 28 | 29 | 30 | 31 | |
| ———— ———— ———— ———— ———— ———— ———— |
|______________________________________|</pre>
</div>
<div id="mois_suivant" role="img" aria-label="calendrier de nos jours de permanence prévus pour le mois prochain">
<pre aria-hidden="true">.——————————————————————————————————————.
| CALENDRIER AVRIL 2024 |
|——————————————————————————————————————|
| ———— ———— ———— ———— ———— ———— ———— |
| | 01 |<span class="highlight"> 02 </span>| 03 | 04 | 05 | 06 | 07 | |
| ———— ———— ———— ———— ———— ———— ———— |
| | 08 | 09 | 10 | 11 | 12 | 13 | 14 | |
| ———— ———— ———— ———— ———— ———— ———— |
| | 15 | 16 | 17 | 18 | 19 | 20 | 21 | |
| ———— ———— ———— ———— ———— ———— ———— |
| | 22 | 23 | 24 | 25 | 26 | 27 | 28 | |
| ———— ———— ———— ———— ———— ———— ———— |
| | 29 |<span class="highlight"> 30 </span>| |
| ———— ———— |
|______________________________________|</pre>
</div>
</main>
<footer class="noscroll" aria-label="pied de page et liens vers CGU, mentions, sources et risques">
<div id="parterre" role="img" aria-label="image d'un parterre de fleurs qui fleurit">
<pre class="center">
. . . , ,
\|/ >;:;< .:.:,:,
(""") >( >O< )< ,,, ;::x::;
\_/ ,,, (_:_)' {{{}} ,:':`:.
/|\ {{{}} '. | _ ~~|~~ '|'
(\ | {{}~Y~ `> \|.'< (-) \|/ |
\| ~Y~\|/ >`>| <` Y \|/ |
____,;/___\\|,,\|/\|//\,;\`|/`/_\|//\ /\.\|/,_\\\\|//_______;._
~^` ^^^~) ~ ~~^^^- ~ ^ ~~~ ^^^~,` ) /,~~~~~~^^^^~^~~~~~~^^^^~~~~^^~~~~~~~~~~~~~^^^~~^^~~~~~~~~~~~~'''''''''' '''^^~^~~~^^^~~~ ~^~ ~^~ ^^ ^~ ~~ ~^~ ^~~^~
. · ., :.,-`·. ~;.,.:`. ,:~, .·".-'.`*,;:,,'.·'``;.'-. : __ - /^^^^^^^^^^- __ _-
_-__ __/`` _~^~~^~~ ^ ^^ ~~^^~ ^^~ ~_ __~^^^~~ ^~~~ ~``~~~~~;_ ^ '·`- !'`.,` ,.· . ~~~~ ~~*^^ ^^(^^^¨¨¨ ¨ ¨¨ ; ,.; `-. ; _
`- - ___ '` .-;)` `_ " '/ `-_ -- : ^* .
- ' .- * ; -. _- ~ . , . . _ - ` '-. ,- '-. -^. `' ._ -·.
- , · .·. , _-` ' `\ ; . ; , ~ . .
` _- .
- _ _ - . - - _ , - ; ( _. ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ . _ . - _ ; ~ ` ^ ^ | - * - ,
\ . , . · - ` ||D |||e |||u |||x |||f |||l |||e |||u |||r |||s || ` `_ ` ' _ -
` _ - ; , . ||__|||__|||__|||__|||__|||__|||__|||__|||__|||__|| " - - '- `
- `· |/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\| ; ` _,. ; , _ - ; \
' - _ ' ~ _ ;· ` - _ ~` ` ^ . : . , ,,, ~ ` ^
` ~ ~ ^ ^ ` _ ` - · : Plantez une graine avec nous ! ' , _ - : - ;
- , - `_ -`, .
- , - * ; -. _- ~ . , . . _ - ` '-. ,- '-. -^. `' ._ -·.`
^ ., · - , ; `, `;. . ; _ -
.-; ; ¨¨ ^^ _ ) . . , . . . . . .- ` _ - * ` "`', _ ; , ;, :-
_ ` ¨ `_ ' `_,.- ` ;-. ''
_ · `'^^ ^
_ ` ^ ¨ · _ - " ` * - ; - _ .·
`` - _ - : ; _ ` "' - : . ,. _ .-__ ¨¨ ;· ·
` _ , _ `_^ ~ ` - \ ` ^^^ ^^ ^^ ^~ `- ^ * , -
~ ~_ _ ` _ "" _.
</pre>
<pre class="center hide">
. . . • , ,
\|/ >;:;< .:.:,:,
(""") >( >O< )< ,,, ;::x::;
\_/ ,,, (_:_)' {{{}} ,:':`:.
/|\ {{{}} '. | _ ~~|~~ '|'
(\ | {{}~Y~ `> \|.'< (-) \|/ |
\| ~Y~\|/ >`>| <` Y \|/ |
____,;/___\\|,,\|/\|//\,;\`|/`/_\|//\ /\.\|/,_\\\\|//_______;._
~^` ^^^~) ~ ~~^^^- ~ ^ ~~~ ^^^~,` ) /,~~~~~~^^^^~^~~~~~~^^^^~~~~^^~~~~~~~~~~~~~^^^~~^^~~~~~~~~~~~~'''''''''' '''^^~^~~~^^^~~~ ~^~ ~^~ ^^ ^~ ~~ ~^~ ^~~^~
. · ., :.,-`·. ~;.,.:`. ,:~, .·".-'.`*,;:,,'.·'``;.'-. : __ - /^^^^^^^^^^- __ _-
_-__ __/`` _~^~~^~~ ^ ^^ ~~^^~ ^^~ ~_ __~^^^~~ ^~~~ ~``~~~~~;_ ^ '·`- !'`.,` ,.· . ~~~~ ~~*^^ ^^(^^^¨¨¨ ¨ ¨¨ ; ,.; `-. ; _
`- - ___ '` .-;)` `_ " '/ `-_ -- : ^* .
- ' .- * ; -. _- ~ . , . . _ - ` '-. ,- '-. -^. `' ._ -·.
- , · .·. , _-` ' `\ ; . ; , ~ . .
` _- .
- _ _ - . - - _ , - ; ( _. ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ . _ . - _ ; ~ ` ^ ^ | - * - ,
\ . , . · - ` ||D |||e |||u |||x |||f |||l |||e |||u |||r |||s || ` `_ ` ' _ -
` _ - ; , . ||__|||__|||__|||__|||__|||__|||__|||__|||__|||__|| " - - '- `
- `· |/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\| ; ` _,. ; , _ - ; \
' - _ ' ~ _ ;· ` - _ ~` ` ^ . : . , ,,, ~ ` ^
` ~ ~ ^ ^ ` _ ` - · : Plantez une graine avec nous ! ' , _ - : - ;
- , - `_ -`, .
- , - * ; -. _- ~ . , . . _ - ` '-. ,- '-. -^. `' ._ -·.`
^ ., · - , ; `, `;. . ; _ -
.-; ; ¨¨ ^^ _ ) . . , . . . . . .- ` _ - * ` "`', _ ; , ;, :-
_ ` ¨ `_ ' `_,.- ` ;-. ''
_ · `'^^ ^
_ ` ^ ¨ · _ - " ` * - ; - _ .·
`` - _ - : ; _ ` "' - : . ,. _ .-__ ¨¨ ;· ·
` _ , _ `_^ ~ ` - \ ` ^^^ ^^ ^^ ^~ `- ^ * , -
~ ~_ _ ` _ "" _.
</pre>
<pre class="center hide">
. . . , ,
\|/ >;:;< .:.:,:,
(""") >( >O< )< • ,,, ;::x::;
\_/ ,,, (_:_)' {{{}} ,:':`:.
/|\ {{{}} '. | _ ~~|~~ '|'
(\ | {{}~Y~ `> \|.'< (-) \|/ |
\| ~Y~\|/ >`>| <` Y \|/ |
____,;/___\\|,,\|/\|//\,;\`|/`/_\|//\ /\.\|/,_\\\\|//_______;._
~^` ^^^~) ~ ~~^^^- ~ ^ ~~~ ^^^~,` ) /,~~~~~~^^^^~^~~~~~~^^^^~~~~^^~~~~~~~~~~~~~^^^~~^^~~~~~~~~~~~~'''''''''' '''^^~^~~~^^^~~~ ~^~ ~^~ ^^ ^~ ~~ ~^~ ^~~^~
. · ., :.,-`·. ~;.,.:`. ,:~, .·".-'.`*,;:,,'.·'``;.'-. : __ - /^^^^^^^^^^- __ _-
_-__ __/`` _~^~~^~~ ^ ^^ ~~^^~ ^^~ ~_ __~^^^~~ ^~~~ ~``~~~~~;_ ^ '·`- !'`.,` ,.· . ~~~~ ~~*^^ ^^(^^^¨¨¨ ¨ ¨¨ ; ,.; `-. ; _
`- - ___ '` .-;)` `_ " '/ `-_ -- : ^* .
- ' .- * ; -. _- ~ . , . . _ - ` '-. ,- '-. -^. `' ._ -·.
- , · .·. , _-` ' `\ ; . ; , ~ . .
` _- .
- _ _ - . - - _ , - ; ( _. ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ . _ . - _ ; ~ ` ^ ^ | - * - ,
\ . , . · - ` ||D |||e |||u |||x |||f |||l |||e |||u |||r |||s || ` `_ ` ' _ -
` _ - ; , . ||__|||__|||__|||__|||__|||__|||__|||__|||__|||__|| " - - '- `
- `· |/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\| ; ` _,. ; , _ - ; \
' - _ ' ~ _ ;· ` - _ ~` ` ^ . : . , ,,, ~ ` ^
` ~ ~ ^ ^ ` _ ` - · : Plantez une graine avec nous ! ' , _ - : - ;
- , - `_ -`, .
- , - * ; -. _- ~ . , . . _ - ` '-. ,- '-. -^. `' ._ -·.`
^ ., · - , ; `, `;. . ; _ -
.-; ; ¨¨ ^^ _ ) . . , . . . . . .- ` _ - * ` "`', _ ; , ;, :-
_ ` ¨ `_ ' `_,.- ` ;-. ''
_ · `'^^ ^
_ ` ^ ¨ · _ - " ` * - ; - _ .·
`` - _ - : ; _ ` "' - : . ,. _ .-__ ¨¨ ;· ·
` _ , _ `_^ ~ ` - \ ` ^^^ ^^ ^^ ^~ `- ^ * , -
~ ~_ _ ` _ "" _.
</pre>
<pre class="center hide">
. . . , ,
\|/ >;:;< .:.:,:,
(""") >( >O< )< ,,, ;::x::;
\_/ ,,, (_:_)' {{{}} ,:':`:.
/|\ {{{}} '. | _ ~~|~~ '|'
(\ | {{}~Y~ `> \|.'< (-) \|/ |
\| ~Y~\|/ >`>| <` Y • \|/ |
____,;/___\\|,,\|/\|//\,;\`|/`/_\|//\ /\.\|/,_\\\\|//_______;._
~^` ^^^~) ~ ~~^^^- ~ ^ ~~~ ^^^~,` ) /,~~~~~~^^^^~^~~~~~~^^^^~~~~^^~~~~~~~~~~~~~^^^~~^^~~~~~~~~~~~~'''''''''' '''^^~^~~~^^^~~~ ~^~ ~^~ ^^ ^~ ~~ ~^~ ^~~^~
. · ., :.,-`·. ~;.,.:`. ,:~, .·".-'.`*,;:,,'.·'``;.'-. : __ - /^^^^^^^^^^- __ _-
_-__ __/`` _~^~~^~~ ^ ^^ ~~^^~ ^^~ ~_ __~^^^~~ ^~~~ ~``~~~~~;_ ^ '·`- !'`.,` ,.· . ~~~~ ~~*^^ ^^(^^^¨¨¨ ¨ ¨¨ ; ,.; `-. ; _
`- - ___ '` .-;)` `_ " '/ `-_ -- : ^* .
- ' .- * ; -. _- ~ . , . . _ - ` '-. ,- '-. -^. `' ._ -·.
- , · .·. , _-` ' `\ ; . ; , ~ . .
` _- .
- _ _ - . - - _ , - ; ( _. ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ . _ . - _ ; ~ ` ^ ^ | - * - ,
\ . , . · - ` ||D |||e |||u |||x |||f |||l |||e |||u |||r |||s || ` `_ ` ' _ -
` _ - ; , . ||__|||__|||__|||__|||__|||__|||__|||__|||__|||__|| " - - '- `
- `· |/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\| ; ` _,. ; , _ - ; \
' - _ ' ~ _ ;· ` - _ ~` ` ^ . : . , ,,, ~ ` ^
` ~ ~ ^ ^ ` _ ` - · : Plantez une graine avec nous ! ' , _ - : - ;
- , - `_ -`, .
- , - * ; -. _- ~ . , . . _ - ` '-. ,- '-. -^. `' ._ -·.`
^ ., · - , ; `, `;. . ; _ -
.-; ; ¨¨ ^^ _ ) . . , . . . . . .- ` _ - * ` "`', _ ; , ;, :-
_ ` ¨ `_ ' `_,.- ` ;-. ''
_ · `'^^ ^
_ ` ^ ¨ · _ - " ` * - ; - _ .·
`` - _ - : ; _ ` "' - : . ,. _ .-__ ¨¨ ;· ·
` _ , _ `_^ ~ ` - \ ` ^^^ ^^ ^^ ^~ `- ^ * , -
~ ~_ _ ` _ "" _.
</pre>
<pre class="center hide">
. . . , ,
\|/ >;:;< .:.:,:,
(""") >( >O< )< ,,, ;::x::;
\_/ ,,, (_:_)' {{{}} ,:':`:.
/|\ {{{}} '. | _ ~~|~~ '|'
(\ | {{}~Y~ `> \|.'< (-) \|/ |
\| ~Y~\|/ >`>| <` Y \|/ |
____,;/___\\|,,\|/\|//\,;\`|/`/_\|//\ /\.\|/,_\\\\|//_______;._
~^` ^^^~) ~ ~~^^^- ~ ^ ~~~ ^^^~,` ) /,~~~~~~^^^^~^~~~~~~^^^^~~~~^^~~~~~~~~~~~~~^^•~~^^~~~~~~~~~~~~'''''''''' '''^^~^~~~^^^~~~ ~^~ ~^~ ^^ ^~ ~~ ~^~ ^~~^~
. · ., :.,-`·. ~;.,.:`. ,:~, .·".-'.`*,;:,,'.·'``;.'-. : __ - /^^^^^^^^^^- __ _-
_-__ __/`` _~^~~^~~ ^ ^^ ~~^^~ ^^~ ~_ __~^^^~~ ^~~~ ~``~~~~~;_ ^ '·`- !'`.,` ,.· . ~~~~ ~~*^^ ^^(^^^¨¨¨ ¨ ¨¨ ; ,.; `-. ; _
`- - ___ '` .-;)` `_ " '/ `-_ -- : ^* .
- ' .- * ; -. _- ~ . , . . _ - ` '-. ,- '-. -^. `' ._ -·.
- , · .·. , _-` ' `\ ; . ; , ~ . .
` _- .
- _ _ - . - - _ , - ; ( _. ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ . _ . - _ ; ~ ` ^ ^ | - * - ,
\ . , . · - ` ||D |||e |||u |||x |||f |||l |||e |||u |||r |||s || ` `_ ` ' _ -
` _ - ; , . ||__|||__|||__|||__|||__|||__|||__|||__|||__|||__|| " - - '- `
- `· |/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\| ; ` _,. ; , _ - ; \
' - _ ' ~ _ ;· ` - _ ~` ` ^ . : . , ,,, ~ ` ^
` ~ ~ ^ ^ ` _ ` - · : Plantez une graine avec nous ! ' , _ - : - ;
- , - `_ -`, .
- , - * ; -. _- ~ . , . . _ - ` '-. ,- '-. -^. `' ._ -·.`
^ ., · - , ; `, `;. . ; _ -
.-; ; ¨¨ ^^ _ ) . . , . . . . . .- ` _ - * ` "`', _ ; , ;, :-
_ ` ¨ `_ ' `_,.- ` ;-. ''
_ · `'^^ ^
_ ` ^ ¨ · _ - " ` * - ; - _ .·
`` - _ - : ; _ ` "' - : . ,. _ .-__ ¨¨ ;· ·
` _ , _ `_^ ~ ` - \ ` ^^^ ^^ ^^ ^~ `- ^ * , -
~ ~_ _ ` _ "" _.
</pre>
<pre class="center hide">
. . . , ,
\|/ >;:;< .:.:,:,
(""") >( >O< )< ,,, ;::x::;
\_/ ,,, (_:_)' {{{}} ,:':`:.
/|\ {{{}} '. | _ ~~|~~ '|'
(\ | {{}~Y~ `> \|.'< (-) \|/ |
\| ~Y~\|/ >`>| <` Y \|/ |
____,;/___\\|,,\|/\|//\,;\`|/`/_\|//\|\ /\.\|/,_\\\\|//_______;._
~^` ^^^~) ~ ~~^^^- ~ ^ ~~~ ^^^~,` ) /,~~~~~~^^^^~^~~~~~~^^^^~~~~^^~~~~~~~~~~~~~^^^~~^^~~~~~~~~~~~~'''''''''' '''^^~^~~~^^^~~~ ~^~ ~^~ ^^ ^~ ~~ ~^~ ^~~^~
. · ., :.,-`·. ~;.,.:`. ,:~, .·".-'.`*,;:,,'.·'``;.'-. : __ - /^^^^^^^^^^- __ _-
_-__ __/`` _~^~~^~~ ^ ^^ ~~^^~ ^^~ ~_ __~^^^~~ ^~~~ ~``~~~~~;_ ^ '·`- !'`.,` ,.· . ~~~~ ~~*^^ ^^(^^^¨¨¨ ¨ ¨¨ ; ,.; `-. ; _
`- - ___ '` .-;)` `_ " '/ `-_ -- : ^* .
- ' .- * ; -. _- ~ . , . . _ - ` '-. ,- '-. -^. `' ._ -·.
- , · .·. , _-` ' `\ ; . ; , ~ . .
` _- .
- _ _ - . - - _ , - ; ( _. ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ . _ . - _ ; ~ ` ^ ^ | - * - ,
\ . , . · - ` ||D |||e |||u |||x |||f |||l |||e |||u |||r |||s || ` `_ ` ' _ -
` _ - ; , . ||__|||__|||__|||__|||__|||__|||__|||__|||__|||__|| " - - '- `
- `· |/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\| ; ` _,. ; , _ - ; \
' - _ ' ~ _ ;· ` - _ ~` ` ^ . : . , ,,, ~ ` ^
` ~ ~ ^ ^ ` _ ` - · : Plantez une graine avec nous ! ' , _ - : - ;
- , - `_ -`, .
- , - * ; -. _- ~ . , . . _ - ` '-. ,- '-. -^. `' ._ -·.`
^ ., · - , ; `, `;. . ; _ -
.-; ; ¨¨ ^^ _ ) . . , . . . . . .- ` _ - * ` "`', _ ; , ;, :-
_ ` ¨ `_ ' `_,.- ` ;-. ''
_ · `'^^ ^
_ ` ^ ¨ · _ - " ` * - ; - _ .·
`` - _ - : ; _ ` "' - : . ,. _ .-__ ¨¨ ;· ·
` _ , _ `_^ ~ ` - \ ` ^^^ ^^ ^^ ^~ `- ^ * , -
~ ~_ _ ` _ "" _.
</pre>
<pre class="center hide">
. . . , ,
\|/ >;:;< .:.:,:,
(""") >( >O< )< ,,, ;::x::;
\_/ ,,, (_:_)' {{{}} ,:':`:.
/|\ {{{}} '. | _ ~~|~~ '|'
(\ | {{}~Y~ `> \|.'< (-) \| \|/ |
\| ~Y~\|/ >`>| <` Y \| \|/ |
____,;/___\\|,,\|/\|//\,;\`|/`/_\|//\|\ /\.\|/,_\\\\|//_______;._
~^` ^^^~) ~ ~~^^^- ~ ^ ~~~ ^^^~,` ) /,~~~~~~^^^^~^~~~~~~^^^^~~~~^^~~~~~~~~~~~~~^^^~~^^~~~~~~~~~~~~'''''''''' '''^^~^~~~^^^~~~ ~^~ ~^~ ^^ ^~ ~~ ~^~ ^~~^~
. · ., :.,-`·. ~;.,.:`. ,:~, .·".-'.`*,;:,,'.·'``;.'-. : __ - /^^^^^^^^^^- __ _-
_-__ __/`` _~^~~^~~ ^ ^^ ~~^^~ ^^~ ~_ __~^^^~~ ^~~~ ~``~~~~~;_ ^ '·`- !'`.,` ,.· . ~~~~ ~~*^^ ^^(^^^¨¨¨ ¨ ¨¨ ; ,.; `-. ; _
`- - ___ '` .-;)` `_ " '/ `-_ -- : ^* .
- ' .- * ; -. _- ~ . , . . _ - ` '-. ,- '-. -^. `' ._ -·.
- , · .·. , _-` ' `\ ; . ; , ~ . .
` _- .
- _ _ - . - - _ , - ; ( _. ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ . _ . - _ ; ~ ` ^ ^ | - * - ,
\ . , . · - ` ||D |||e |||u |||x |||f |||l |||e |||u |||r |||s || ` `_ ` ' _ -
` _ - ; , . ||__|||__|||__|||__|||__|||__|||__|||__|||__|||__|| " - - '- `
- `· |/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\| ; ` _,. ; , _ - ; \
' - _ ' ~ _ ;· ` - _ ~` ` ^ . : . , ,,, ~ ` ^
` ~ ~ ^ ^ ` _ ` - · : Plantez une graine avec nous ! ' , _ - : - ;
- , - `_ -`, .
- , - * ; -. _- ~ . , . . _ - ` '-. ,- '-. -^. `' ._ -·.`
^ ., · - , ; `, `;. . ; _ -
.-; ; ¨¨ ^^ _ ) . . , . . . . . .- ` _ - * ` "`', _ ; , ;, :-
_ ` ¨ `_ ' `_,.- ` ;-. ''
_ · `'^^ ^
_ ` ^ ¨ · _ - " ` * - ; - _ .·
`` - _ - : ; _ ` "' - : . ,. _ .-__ ¨¨ ;· ·
` _ , _ `_^ ~ ` - \ ` ^^^ ^^ ^^ ^~ `- ^ * , -
~ ~_ _ ` _ "" _.
</pre>
<pre class="center hide">
. . . , ,
\|/ >;:;< .:.:,:,
(""") >( >O< )< ,,, ;::x::;
\_/ ,,, (_:_)' ___ {{{}} ,:':`:.
/|\ {{{}} '. | _ \~ ~~|~~ '|'
(\ | {{}~Y~ `> \|.'< (-) \| \|/ |
\| ~Y~\|/ >`>| <` Y \| \|/ |
____,;/___\\|,,\|/\|//\,;\`|/`/_\|//\|\ /\.\|/,_\\\\|//_______;._
~^` ^^^~) ~ ~~^^^- ~ ^ ~~~ ^^^~,` ) /,~~~~~~^^^^~^~~~~~~^^^^~~~~^^~~~~~~~~~~~~~^^^~~^^~~~~~~~~~~~~'''''''''' '''^^~^~~~^^^~~~ ~^~ ~^~ ^^ ^~ ~~ ~^~ ^~~^~
. · ., :.,-`·. ~;.,.:`. ,:~, .·".-'.`*,;:,,'.·'``;.'-. : __ - /^^^^^^^^^^- __ _-
_-__ __/`` _~^~~^~~ ^ ^^ ~~^^~ ^^~ ~_ __~^^^~~ ^~~~ ~``~~~~~;_ ^ '·`- !'`.,` ,.· . ~~~~ ~~*^^ ^^(^^^¨¨¨ ¨ ¨¨ ; ,.; `-. ; _
`- - ___ '` .-;)` `_ " '/ `-_ -- : ^* .
- ' .- * ; -. _- ~ . , . . _ - ` '-. ,- '-. -^. `' ._ -·.
- , · .·. , _-` ' `\ ; . ; , ~ . .
` _- .
- _ _ - . - - _ , - ; ( _. ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ . _ . - _ ; ~ ` ^ ^ | - * - ,
\ . , . · - ` ||D |||e |||u |||x |||f |||l |||e |||u |||r |||s || ` `_ ` ' _ -
` _ - ; , . ||__|||__|||__|||__|||__|||__|||__|||__|||__|||__|| " - - '- `
- `· |/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\| ; ` _,. ; , _ - ; \
' - _ ' ~ _ ;· ` - _ ~` ` ^ . : . , ,,, ~ ` ^
` ~ ~ ^ ^ ` _ ` - · : Plantez une graine avec nous ! ' , _ - : - ;
- , - `_ -`, .
- , - * ; -. _- ~ . , . . _ - ` '-. ,- '-. -^. `' ._ -·.`
^ ., · - , ; `, `;. . ; _ -
.-; ; ¨¨ ^^ _ ) . . , . . . . . .- ` _ - * ` "`', _ ; , ;, :-
_ ` ¨ `_ ' `_,.- ` ;-. ''
_ · `'^^ ^
_ ` ^ ¨ · _ - " ` * - ; - _ .·
`` - _ - : ; _ ` "' - : . ,. _ .-__ ¨¨ ;· ·
` _ , _ `_^ ~ ` - \ ` ^^^ ^^ ^^ ^~ `- ^ * , -
~ ~_ _ ` _ "" _.
</pre>
<pre class="center hide">
. . . , ,
\|/ >;:;< .:.:,:,
(""") >( >O< )< ,,, ;::x::;
\_/ ,,, (_:_)' (___) {{{}} ,:':`:.
/|\ {{{}} '. | _ \~ ~~|~~ '|'
(\ | {{}~Y~ `> \|.'< (-) \| \|/ |
\| ~Y~\|/ >`>| <` Y \| \|/ |
____,;/___\\|,,\|/\|//\,;\`|/`/_\|//\|\ /\.\|/,_\\\\|//_______;._
~^` ^^^~) ~ ~~^^^- ~ ^ ~~~ ^^^~,` ) /,~~~~~~^^^^~^~~~~~~^^^^~~~~^^~~~~~~~~~~~~~^^^~~^^~~~~~~~~~~~~'''''''''' '''^^~^~~~^^^~~~ ~^~ ~^~ ^^ ^~ ~~ ~^~ ^~~^~
. · ., :.,-`·. ~;.,.:`. ,:~, .·".-'.`*,;:,,'.·'``;.'-. : __ - /^^^^^^^^^^- __ _-
_-__ __/`` _~^~~^~~ ^ ^^ ~~^^~ ^^~ ~_ __~^^^~~ ^~~~ ~``~~~~~;_ ^ '·`- !'`.,` ,.· . ~~~~ ~~*^^ ^^(^^^¨¨¨ ¨ ¨¨ ; ,.; `-. ; _
`- - ___ '` .-;)` `_ " '/ `-_ -- : ^* .
- ' .- * ; -. _- ~ . , . . _ - ` '-. ,- '-. -^. `' ._ -·.
- , · .·. , _-` ' `\ ; . ; , ~ . .
` _- .
- _ _ - . - - _ , - ; ( _. ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ . _ . - _ ; ~ ` ^ ^ | - * - ,
\ . , . · - ` ||D |||e |||u |||x |||f |||l |||e |||u |||r |||s || ` `_ ` ' _ -
` _ - ; , . ||__|||__|||__|||__|||__|||__|||__|||__|||__|||__|| " - - '- `
- `· |/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\| ; ` _,. ; , _ - ; \
' - _ ' ~ _ ;· ` - _ ~` ` ^ . : . , ,,, ~ ` ^
` ~ ~ ^ ^ ` _ ` - · : Plantez une graine avec nous ! ' , _ - : - ;
- , - `_ -`, .
- , - * ; -. _- ~ . , . . _ - ` '-. ,- '-. -^. `' ._ -·.`
^ ., · - , ; `, `;. . ; _ -
.-; ; ¨¨ ^^ _ ) . . , . . . . . .- ` _ - * ` "`', _ ; , ;, :-
_ ` ¨ `_ ' `_,.- ` ;-. ''
_ · `'^^ ^
_ ` ^ ¨ · _ - " ` * - ; - _ .·
`` - _ - : ; _ ` "' - : . ,. _ .-__ ¨¨ ;· ·
` _ , _ `_^ ~ ` - \ ` ^^^ ^^ ^^ ^~ `- ^ * , -
~ ~_ _ ` _ "" _.
</pre>
<pre class="center hide">
. . . , ,
\|/ >;:;< .:.:,:,
(""") >( >O< )< wWWWw ,,, ;::x::;
\_/ ,,, (_:_)' (___) {{{}} ,:':`:.
/|\ {{{}} '. | _ \~ ~~|~~ '|'
(\ | {{}~Y~ `> \|.'< (-) \| \|/ |
\| ~Y~\|/ >`>| <` Y \| \|/ |
____,;/___\\|,,\|/\|//\,;\`|/`/_\|//\|\ /\.\|/,_\\\\|//_______;._
~^` ^^^~) ~ ~~^^^- ~ ^ ~~~ ^^^~,` ) /,~~~~~~^^^^~^~~~~~~^^^^~~~~^^~~~~~~~~~~~~~^^^~~^^~~~~~~~~~~~~'''''''''' '''^^~^~~~^^^~~~ ~^~ ~^~ ^^ ^~ ~~ ~^~ ^~~^~
. · ., :.,-`·. ~;.,.:`. ,:~, .·".-'.`*,;:,,'.·'``;.'-. : __ - /^^^^^^^^^^- __ _-
_-__ __/`` _~^~~^~~ ^ ^^ ~~^^~ ^^~ ~_ __~^^^~~ ^~~~ ~``~~~~~;_ ^ '·`- !'`.,` ,.· . ~~~~ ~~*^^ ^^(^^^¨¨¨ ¨ ¨¨ ; ,.; `-. ; _
`- - ___ '` .-;)` `_ " '/ `-_ -- : ^* .
- ' .- * ; -. _- ~ . , . . _ - ` '-. ,- '-. -^. `' ._ -·.
- , · .·. , _-` ' `\ ; . ; , ~ . .
` _- .
- _ _ - . - - _ , - ; ( _. ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ . _ . - _ ; ~ ` ^ ^ | - * - ,
\ . , . · - ` ||D |||e |||u |||x |||f |||l |||e |||u |||r |||s || ` `_ ` ' _ -
` _ - ; , . ||__|||__|||__|||__|||__|||__|||__|||__|||__|||__|| " - - '- `
- `· |/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\| ; ` _,. ; , _ - ; \
' - _ ' ~ _ ;· ` - _ ~` ` ^ . : . , ,,, ~ ` ^
` ~ ~ ^ ^ ` _ ` - · : Plantez une graine avec nous ! ' , _ - : - ;
- , - `_ -`, .
- , - * ; -. _- ~ . , . . _ - ` '-. ,- '-. -^. `' ._ -·.`
^ ., · - , ; `, `;. . ; _ -
.-; ; ¨¨ ^^ _ ) . . , . . . . . .- ` _ - * ` "`', _ ; , ;, :-
_ ` ¨ `_ ' `_,.- ` ;-. ''
_ · `'^^ ^
_ ` ^ ¨ · _ - " ` * - ; - _ .·
`` - _ - : ; _ ` "' - : . ,. _ .-__ ¨¨ ;· ·
` _ , _ `_^ ~ ` - \ ` ^^^ ^^ ^^ ^~ `- ^ * , -
~ ~_ _ ` _ "" _.
</pre>
<pre class="center hide">
. . . , ,
\|/ >;:;< .:.:,:,
(""") >( >O< )< wWWWw ,,, ;::x::;
\_/ ,,, (_:_)' (___) {{{}} ,:':`:.
/|\ {{{}} '. | _ \~ ~~|~~ '|'
(\ | {{}~Y~ `> \|.'< (-) \| \|/ |
\| ~Y~\|/ >`>| <` Y \| \|/ |
____,;/___\\|,,\|/\|//\,;\`|/`/_\|//\|\ /\.\|/,_\\\\|//_______;._
~^` ^^^~) ~ ~~^^^- ~ ^ ~~~ ^^^~,` ) /,~~~~~~^^^^~^~~~~~~^^^^~~~~^^~~~~~~~~~~~~~^^^~~^^~~~~~~~~~~~~'''''''''' '''^^~^~~~^^^~~~ ~^~ ~^~ ^^ ^~ ~~ ~^~ ^~~^~
. · ., :.,-`·. ~;.,.:`. ,:~, .·".-'.`*,;:,,'.·'``;.'-. : __ - /^^^^^^^^^^- __ _-
_-__ __/`` _~^~~^~~ ^ ^^ ~~^^~ ^^~ ~_ __~^^^~~ ^~~~ ~``~~~~~;_ ^ '·`- !'`.,` ,.· . ~~~~ ~~*^^ ^^(^^^¨¨¨ ¨ ¨¨ ; ,.; `-. ; _
`- - ___ '` .-;)` `_ " '/ `-_ -- : ^* .
- ' .- * ; -. _- ~ . , . . _ - ` '-. ,- '-. -^. `' ._ -·.
- , · .·. , _-` ' `\ ; . ; , ~ . .
` _- .
- _ _ - . - - _ , - ; ( _. ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ . _ . - _ ; ~ ` ^ ^ | - * - ,
\ . , . · - ` ||D |||e |||u |||x |||f |||l |||e |||u |||r |||s || ` `_ ` ' _ -
` _ - ; , . ||__|||__|||__|||__|||__|||__|||__|||__|||__|||__|| " - - '- `
- `· |/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\| ; ` _,. ; , _ - ; \
' - _ ' ~ _ ;· ` - _ ~` ` ^ . : . , ,,, ~ ` ^
` ~ ~ ^ ^ ` _ ` - · : Plantez une graine avec nous ! ' , _ - : - ;
- , - `_ -`, .
- , - * ; -. _- ~ . , . . _ - ` '-. ,- '-. -^. `' ._ -·.`
^ ., · - , ; `, `;. . ; _ -
.-; ; ¨¨ ^^ _ ) . . , . . . . . .- ` _ - * ` "`', _ ; , ;, :-
_ ` ¨ `_ ' `_,.- ` ;-. ''
_ · `'^^ ^
_ ` ^ ¨ · _ - " ` * - ; - _ .·
`` - _ - : ; _ ` "' - : . ,. _ .-__ ¨¨ ;· ·
` _ , _ `_^ ~ ` - \ ` ^^^ ^^ ^^ ^~ `- ^ * , -
~ ~_ _ ` _ "" _.
</pre>
<pre class="center hide">
. . . , ,
\|/ >;:;< .:.:,:,
(""") >( >O< )< wWWWw ,,, ;::x::;
\_/ ,,, (_:_)' (___) {{{}} ,:':`:.
/|\ {{{}} '. | _ \~ ~~|~~ '|'
(\ | {{}~Y~ `> \|.'< (-) \| \|/ |
\| ~Y~\|/ >`>| <` Y \| \|/ |
____,;/___\\|,,\|/\|//\,;\`|/`/_\|//\|\ /\.\|/,_\\\\|//_______;._
~^` ^^^~) ~ ~~^^^- ~ ^ ~~~ ^^^~,` ) /,~~~~~~^^^^~^~~~~~~^^^^~~~~^^~~~~~~~~~~~~~^^^~~^^~~~~~~~~~~~~'''''''''' '''^^~^~~~^^^~~~ ~^~ ~^~ ^^ ^~ ~~ ~^~ ^~~^~
. · ., :.,-`·. ~;.,.:`. ,:~, .·".-'.`*,;:,,'.·'``;.'-. : __ - /^^^^^^^^^^- __ _-
_-__ __/`` _~^~~^~~ ^ ^^ ~~^^~ ^^~ ~_ __~^^^~~ ^~~~ ~``~~~~~;_ ^ '·`- !'`.,` ,.· . ~~~~ ~~*^^ ^^(^^^¨¨¨ ¨ ¨¨ ; ,.; `-. ; _
`- - ___ '` .-;)` `_ " '/ `-_ -- : ^* .
- ' .- * ; -. _- ~ . , . . _ - ` '-. ,- '-. -^. `' ._ -·.
- , · .·. , _-` ' `\ ; . ; , ~ . .
` _- .
- _ _ - . - - _ , - ; ( _. ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ . _ . - _ ; ~ ` ^ ^ | - * - ,
\ . , . · - ` ||D |||e |||u |||x |||f |||l |||e |||u |||r |||s || ` `_ ` ' _ -
` _ - ; , . ||__|||__|||__|||__|||__|||__|||__|||__|||__|||__|| " - - '- `
- `· |/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\| ; ` _,. ; , _ - ; \
' - _ ' ~ _ ;· ` - _ ~` ` ^ . : . , ,,, ~ ` ^
` ~ ~ ^ ^ ` _ ` - · : Plantez une graine avec nous ! ' , _ - : - ;
- , - `_ -`, .
- , - * ; -. _- ~ . , . . _ - ` '-. ,- '-. -^. `' ._ -·.`
^ ., · - , ; `, `;. . ; _ -
.-; ; ¨¨ ^^ _ ) . . , . . . . . .- ` _ - * ` "`', _ ; , ;, :-
_ ` ¨ `_ ' `_,.- ` ;-. ''
_ · `'^^ ^
_ ` ^ ¨ · _ - " ` * - ; - _ .·
`` - _ - : ; _ ` "' - : . ,. _ .-__ ¨¨ ;· ·
` _ , _ `_^ ~ ` - \ ` ^^^ ^^ ^^ ^~ `- ^ * , -
~ ~_ _ ` _ "" _.
</pre>
<pre class="center hide">
. . . , ,
\|/ >;:;< .:.:,:,
(""") >( >O< )< wWWWw ,,, ;::x::;
\_/ ,,, (_:_)' (___) {{{}} ,:':`:.
/|\ {{{}} '. | _ \~ ~~|~~ '|'
(\ | {{}~Y~ `> \|.'< (-) \| \|/ |
\| ~Y~\|/ >`>| <` Y \| \|/ |
____,;/___\\|,,\|/\|//\,;\`|/`/_\|//\|\ /\.\|/,_\\\\|//_______;._
~^` ^^^~) ~ ~~^^^- ~ ^ ~~~ ^^^~,` ) /,~~~~~~^^^^~^~~~~~~^^^^~~~~^^~~~~~~~~~~~~~^^^~~^^~~~~~~~~~~~~'''''''''' '''^^~^~~~^^^~~~ ~^~ ~^~ ^^ ^~ ~~ ~^~ ^~~^~
. · ., :.,-`·. ~;.,.:`. ,:~, .·".-'.`*,;:,,'.·'``;.'-. : __ - /^^^^^^^^^^- __ _-
_-__ __/`` _~^~~^~~ ^ ^^ ~~^^~ ^^~ ~_ __~^^^~~ ^~~~ ~``~~~~~;_ ^ '·`- !'`.,` ,.· . ~~~~ ~~*^^ ^^(^^^¨¨¨ ¨ ¨¨ ; ,.; `-. ; _
`- - ___ '` .-;)` `_ " '/ `-_ -- : ^* .
- ' .- * ; -. _- ~ . , . . _ - ` '-. ,- '-. -^. `' ._ -·.
- , · .·. , _-` ' `\ ; . ; , ~ . .
` _- .
- _ _ - . - - _ , - ; ( _. ____ ____ ____ ____ ____ ____ ____ ____ ____ ____ . _ . - _ ; ~ ` ^ ^ | - * - ,
\ . , . · - ` ||D |||e |||u |||x |||f |||l |||e |||u |||r |||s || ` `_ ` ' _ -
` _ - ; , . ||__|||__|||__|||__|||__|||__|||__|||__|||__|||__|| " - - '- `
- `· |/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\|/__\| ; ` _,. ; , _ - ; \
' - _ ' ~ _ ;· ` - _ ~` ` ^ . : . , ,,, ~ ` ^
` ~ ~ ^ ^ ` _ ` - · : Plantez une graine avec nous ! ' , _ - : - ;
- , - `_ -`, .
- , - * ; -. _- ~ . , . . _ - ` '-. ,- '-. -^. `' ._ -·.`
^ ., · - , ; `, `;. . ; _ -
.-; ; ¨¨ ^^ _ ) . . , . . . . . .- ` _ - * ` "`', _ ; , ;, :-
_ ` ¨ `_ ' `_,.- ` ;-. ''
_ · `'^^ ^
_ ` ^ ¨ · _ - " ` * - ; - _ .·
`` - _ - : ; _ ` "' - : . ,. _ .-__ ¨¨ ;· ·
` _ , _ `_^ ~ ` - \ ` ^^^ ^^ ^^ ^~ `- ^ * , -
~ ~_ _ ` _ "" _.
</pre>
</div>
<div id="liens">
<a href="https://guide.deuxfleurs.fr/vie_associative/cgu/">CGU</a><span role="separator"> · </span><a href="https://guide.deuxfleurs.fr/vie_associative/gestion-des-risques/">Gestion des risques</a><span role="separator"> · </span><a href="https://guide.deuxfleurs.fr/vie_associative/mentions-legales">Mentions légales</a><span role="separator"> · </span><a href="https://guide.deuxfleurs.fr/operations/sources">Sources</a>
</div>
</footer>
</div>
<!-- script animations -->
<script src="script-bon.js"></script>
</body>
</html>
\ No newline at end of file |