Compare commits
92 commits
2022-08-pr
...
main
Author | SHA1 | Date | |
---|---|---|---|
a9d9ab2137 | |||
b903ebe168 | |||
3e6ae0e636 | |||
89c1b2d892 | |||
091f4ddc4a | |||
9ff1b20248 | |||
351931fdeb | |||
31aa58a863 | |||
4978b26ef6 | |||
b75294cc96 | |||
821f38c112 | |||
a007d29a9f | |||
fd276e5dc2 | |||
3a404c162c | |||
b4e50788a6 | |||
a2edf9bde5 | |||
66bb48aaa7 | |||
352c25ed3e | |||
|
c5dd5467a4 | ||
|
6ae76f5b93 | ||
|
469d165852 | ||
|
99b6eaae61 | ||
|
5f67856c95 | ||
|
547235a400 | ||
9a230c545d | |||
|
8619254c73 | ||
68e1e57468 | |||
39228d1b09 | |||
24f2d73ede | |||
eba015111f | |||
0d2b7f2fc1 | |||
ffe96d9c51 | |||
8e64f17016 | |||
6d33f1b765 | |||
40772c46cb | |||
74ae837d07 | |||
354c350375 | |||
|
edb75a5e82 | ||
65e2e2f806 | |||
fd3e318a70 | |||
|
c9d872c614 | ||
|
efcb3742b7 | ||
|
497363b343 | ||
|
ba3fc25ec4 | ||
|
fc7ea5238f | ||
|
4879267924 | ||
|
de58cd9686 | ||
|
b1149c7b90 | ||
|
526acdec1a | ||
|
79be49569f | ||
e3d6200221 | |||
821b2989a1 | |||
ffd5f97997 | |||
517c93d8fb | |||
8c192fbb45 | |||
fdfae00dc4 | |||
fe801e71a8 | |||
050de5c2a1 | |||
55f5fbb7aa | |||
62661eb3a6 | |||
f496b120b9 | |||
1c2f7c43e0 | |||
709ca4b962 | |||
de1efbef36 | |||
|
caaf1fecab | ||
223dad81a2 | |||
|
6faa14ea47 | ||
c2a9631d16 | |||
77b5d4d0ba | |||
60e625326a | |||
cdd0edc081 | |||
f08c2e5e45 | |||
d5eb7aa119 | |||
c9006b4d3d | |||
1cd2f4d608 | |||
78b68a3cd9 | |||
0364444e6a | |||
8e9ffa9064 | |||
00352e121c | |||
1ec1414679 | |||
b3c8cfb8e6 | |||
64e99f7a00 | |||
ab4e5f2472 | |||
dad198ea29 | |||
8986e5b6b1 | |||
ccf14158a4 | |||
e473ada5b8 | |||
7dcd436b84 | |||
4cbd53b627 | |||
f53edd99a0 | |||
a8a5a40027 | |||
91d10a7eb3 |
73
.drone.yml
|
@ -1,73 +0,0 @@
|
|||
---
|
||||
# see https://docs.drone.io/pipeline/configuration/
|
||||
kind: pipeline
|
||||
type: docker
|
||||
name: build
|
||||
|
||||
steps:
|
||||
- name: restore-cache
|
||||
image: meltwater/drone-cache:v1.1.0
|
||||
environment:
|
||||
AWS_ACCESS_KEY_ID:
|
||||
from_secret: cache_aws_access_key_id
|
||||
AWS_SECRET_ACCESS_KEY:
|
||||
from_secret: cache_aws_secret_access_key
|
||||
pull: true
|
||||
settings:
|
||||
restore: true
|
||||
bucket: drone-cache
|
||||
region: garage
|
||||
mount:
|
||||
- 'node_modules'
|
||||
path_style: true
|
||||
endpoint: https://garage.deuxfleurs.fr
|
||||
|
||||
- name: build
|
||||
# cf https://hub.docker.com/_/node?tab=description&page=1&ordering=last_updated
|
||||
image: node:14-buster
|
||||
commands:
|
||||
- npm install
|
||||
- node render.js
|
||||
|
||||
- name: upload
|
||||
image: plugins/s3
|
||||
settings:
|
||||
bucket: deuxfleurs.fr
|
||||
access_key:
|
||||
from_secret: aws_access_key_id
|
||||
secret_key:
|
||||
from_secret: aws_secret_access_key
|
||||
source: static/**/*
|
||||
strip_prefix: static/
|
||||
target: /
|
||||
path_style: true
|
||||
endpoint: https://garage.deuxfleurs.fr
|
||||
region: garage
|
||||
when:
|
||||
branch:
|
||||
- main
|
||||
event:
|
||||
exclude:
|
||||
- pull_request
|
||||
|
||||
- name: rebuild-cache
|
||||
image: meltwater/drone-cache:v1.1.0
|
||||
environment:
|
||||
AWS_ACCESS_KEY_ID:
|
||||
from_secret: cache_aws_access_key_id
|
||||
AWS_SECRET_ACCESS_KEY:
|
||||
from_secret: cache_aws_secret_access_key
|
||||
pull: true
|
||||
settings:
|
||||
rebuild: true
|
||||
bucket: drone-cache
|
||||
region: garage
|
||||
mount:
|
||||
- 'node_modules'
|
||||
path_style: true
|
||||
endpoint: https://garage.deuxfleurs.fr
|
||||
---
|
||||
kind: signature
|
||||
hmac: f1fcc439a2180d4e98224dec1cd2dc10691b58161bfee7739ae700e84f04c905
|
||||
|
||||
...
|
21
.editorconfig
Normal file
|
@ -0,0 +1,21 @@
|
|||
root = true
|
||||
|
||||
[*]
|
||||
end_of_line = lf
|
||||
trim_trailing_whitespace = true
|
||||
charset = utf-8
|
||||
|
||||
[*.{html,css,js}]
|
||||
indent_style = space
|
||||
indent_size = 2
|
||||
|
||||
[*.{yml,yaml}]
|
||||
indent_style = space
|
||||
indent_size = 2
|
||||
|
||||
[*.json]
|
||||
indent_style = space
|
||||
indent_size = 2
|
||||
|
||||
[*.md]
|
||||
trim_trailing_whitespace = false
|
2
.gitignore
vendored
|
@ -1,4 +1,4 @@
|
|||
static/
|
||||
public/
|
||||
node_modules/
|
||||
*.swp
|
||||
.awsclirc
|
||||
|
|
56
.woodpecker.yaml
Normal file
|
@ -0,0 +1,56 @@
|
|||
steps:
|
||||
- name: HTML syntax check
|
||||
image: debian:12
|
||||
# Debian has tidy 5.6.0, which complains about the "loading" tag in img.
|
||||
# We need a more recent version for now.
|
||||
commands:
|
||||
- DEBIAN_FRONTEND=noninteractive apt update -qq
|
||||
- DEBIAN_FRONTEND=noninteractive apt install -qq -y wget
|
||||
- wget -q https://github.com/htacg/tidy-html5/releases/download/5.8.0/tidy-5.8.0-Linux-64bit.deb
|
||||
- echo "59e594312207234f5a17455683c13c6bc47a89cb7bf994d493acfffb591d9830 tidy-5.8.0-Linux-64bit.deb" | sha256sum -c
|
||||
- DEBIAN_FRONTEND=noninteractive apt install -qq -y ./tidy-5.8.0-Linux-64bit.deb
|
||||
- tidy -q -e --drop-empty-elements no static/index.html
|
||||
|
||||
- name: disable SEO indexing (on preprod only)
|
||||
when:
|
||||
event: [push, pull_request]
|
||||
branch: preprod
|
||||
image: debian:12 # Same as previous step to not have to download 2 images, but it could be any linux
|
||||
commands:
|
||||
- '[ -f static/robots.txt ] && echo "Disallow: /*" >> static/robots.txt'
|
||||
|
||||
- name: upload (preprod)
|
||||
when:
|
||||
event: [push, pull_request]
|
||||
branch: preprod
|
||||
image: plugins/s3
|
||||
settings:
|
||||
bucket: preprod-site
|
||||
endpoint: https://garage.deuxfleurs.fr
|
||||
region: garage
|
||||
access_key:
|
||||
from_secret: aws_access_key_id
|
||||
secret_key:
|
||||
from_secret: aws_secret_access_key
|
||||
source: static/**/*
|
||||
target: /
|
||||
strip_prefix: static/
|
||||
path_style: true
|
||||
|
||||
- name: upload (prod)
|
||||
when:
|
||||
- event: push
|
||||
branch: main
|
||||
image: plugins/s3
|
||||
settings:
|
||||
bucket: deuxfleurs.fr
|
||||
endpoint: https://garage.deuxfleurs.fr
|
||||
region: garage
|
||||
access_key:
|
||||
from_secret: aws_access_key_id
|
||||
secret_key:
|
||||
from_secret: aws_secret_access_key
|
||||
source: static/**/*
|
||||
target: /
|
||||
strip_prefix: static/
|
||||
path_style: true
|
18
DEPLOY.md
|
@ -1,18 +0,0 @@
|
|||
## À réaliser au premier clonage du dépôt
|
||||
|
||||
Commencer par créer un fichier `.awsclirc` avec cette structure :
|
||||
|
||||
```
|
||||
export AWS_ACCESS_KEY_ID='xxxx'
|
||||
export AWS_SECRET_ACCESS_KEY='xxxx'
|
||||
export AWS_DEFAULT_REGION='garage'
|
||||
alias awsdf="aws --endpoint-url https://garage.deuxfleurs.fr"
|
||||
```
|
||||
|
||||
Installer [l'outil en ligne de commande de AWS version 2](https://docs.aws.amazon.com/cli/latest/userguide/install-cliv2.html) qui fournit la commande `aws`.
|
||||
|
||||
Enfin, déployer en exécutant :
|
||||
|
||||
```
|
||||
./deploy
|
||||
```
|
614
LICENSE
|
@ -1,614 +0,0 @@
|
|||
GNU AFFERO GENERAL PUBLIC LICENSE
|
||||
|
||||
Version 3, 19 November 2007
|
||||
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <http s ://fsf.org/>
|
||||
|
||||
Everyone is permitted to copy and distribute verbatim copies of this license
|
||||
document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The GNU Affero General Public License is a free, copyleft license for software
|
||||
and other kinds of works, specifically designed to ensure cooperation with
|
||||
the community in the case of network server software.
|
||||
|
||||
The licenses for most software and other practical works are designed to take
|
||||
away your freedom to share and change the works. By contrast, our General
|
||||
Public Licenses are intended to guarantee your freedom to share and change
|
||||
all versions of a program--to make sure it remains free software for all its
|
||||
users.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not price. Our
|
||||
General Public Licenses are designed to make sure that you have the freedom
|
||||
to distribute copies of free software (and charge for them if you wish), that
|
||||
you receive source code or can get it if you want it, that you can change
|
||||
the software or use pieces of it in new free programs, and that you know you
|
||||
can do these things.
|
||||
|
||||
Developers that use our General Public Licenses protect your rights with two
|
||||
steps: (1) assert copyright on the software, and (2) offer you this License
|
||||
which gives you legal permission to copy, distribute and/or modify the software.
|
||||
|
||||
A secondary benefit of defending all users' freedom is that improvements made
|
||||
in alternate versions of the program, if they receive widespread use, become
|
||||
available for other developers to incorporate. Many developers of free software
|
||||
are heartened and encouraged by the resulting cooperation. However, in the
|
||||
case of software used on network servers, this result may fail to come about.
|
||||
The GNU General Public License permits making a modified version and letting
|
||||
the public access it on a server without ever releasing its source code to
|
||||
the public.
|
||||
|
||||
The GNU Affero General Public License is designed specifically to ensure that,
|
||||
in such cases, the modified source code becomes available to the community.
|
||||
It requires the operator of a network server to provide the source code of
|
||||
the modified version running there to the users of that server. Therefore,
|
||||
public use of a modified version, on a publicly accessible server, gives the
|
||||
public access to the source code of the modified version.
|
||||
|
||||
An older license, called the Affero General Public License and published by
|
||||
Affero, was designed to accomplish similar goals. This is a different license,
|
||||
not a version of the Affero GPL, but Affero has released a new version of
|
||||
the Affero GPL which permits relicensing under this license.
|
||||
|
||||
The precise terms and conditions for copying, distribution and modification
|
||||
follow.
|
||||
|
||||
TERMS AND CONDITIONS
|
||||
|
||||
0. Definitions.
|
||||
|
||||
"This License" refers to version 3 of the GNU Affero General Public License.
|
||||
|
||||
"Copyright" also means copyright-like laws that apply to other kinds of works,
|
||||
such as semiconductor masks.
|
||||
|
||||
"The Program" refers to any copyrightable work licensed under this License.
|
||||
Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals
|
||||
or organizations.
|
||||
|
||||
To "modify" a work means to copy from or adapt all or part of the work in
|
||||
a fashion requiring copyright permission, other than the making of an exact
|
||||
copy. The resulting work is called a "modified version" of the earlier work
|
||||
or a work "based on" the earlier work.
|
||||
|
||||
A "covered work" means either the unmodified Program or a work based on the
|
||||
Program.
|
||||
|
||||
To "propagate" a work means to do anything with it that, without permission,
|
||||
would make you directly or secondarily liable for infringement under applicable
|
||||
copyright law, except executing it on a computer or modifying a private copy.
|
||||
Propagation includes copying, distribution (with or without modification),
|
||||
making available to the public, and in some countries other activities as
|
||||
well.
|
||||
|
||||
To "convey" a work means any kind of propagation that enables other parties
|
||||
to make or receive copies. Mere interaction with a user through a computer
|
||||
network, with no transfer of a copy, is not conveying.
|
||||
|
||||
An interactive user interface displays "Appropriate Legal Notices" to the
|
||||
extent that it includes a convenient and prominently visible feature that
|
||||
(1) displays an appropriate copyright notice, and (2) tells the user that
|
||||
there is no warranty for the work (except to the extent that warranties are
|
||||
provided), that licensees may convey the work under this License, and how
|
||||
to view a copy of this License. If the interface presents a list of user commands
|
||||
or options, such as a menu, a prominent item in the list meets this criterion.
|
||||
|
||||
1. Source Code.
|
||||
|
||||
The "source code" for a work means the preferred form of the work for making
|
||||
modifications to it. "Object code" means any non-source form of a work.
|
||||
|
||||
A "Standard Interface" means an interface that either is an official standard
|
||||
defined by a recognized standards body, or, in the case of interfaces specified
|
||||
for a particular programming language, one that is widely used among developers
|
||||
working in that language.
|
||||
|
||||
The "System Libraries" of an executable work include anything, other than
|
||||
the work as a whole, that (a) is included in the normal form of packaging
|
||||
a Major Component, but which is not part of that Major Component, and (b)
|
||||
serves only to enable use of the work with that Major Component, or to implement
|
||||
a Standard Interface for which an implementation is available to the public
|
||||
in source code form. A "Major Component", in this context, means a major essential
|
||||
component (kernel, window system, and so on) of the specific operating system
|
||||
(if any) on which the executable work runs, or a compiler used to produce
|
||||
the work, or an object code interpreter used to run it.
|
||||
|
||||
The "Corresponding Source" for a work in object code form means all the source
|
||||
code needed to generate, install, and (for an executable work) run the object
|
||||
code and to modify the work, including scripts to control those activities.
|
||||
However, it does not include the work's System Libraries, or general-purpose
|
||||
tools or generally available free programs which are used unmodified in performing
|
||||
those activities but which are not part of the work. For example, Corresponding
|
||||
Source includes interface definition files associated with source files for
|
||||
the work, and the source code for shared libraries and dynamically linked
|
||||
subprograms that the work is specifically designed to require, such as by
|
||||
intimate data communication or control flow between those
|
||||
|
||||
subprograms and other parts of the work.
|
||||
|
||||
The Corresponding Source need not include anything that users can regenerate
|
||||
automatically from other parts of the Corresponding Source.
|
||||
|
||||
The Corresponding Source for a work in source code form is that same work.
|
||||
|
||||
2. Basic Permissions.
|
||||
|
||||
All rights granted under this License are granted for the term of copyright
|
||||
on the Program, and are irrevocable provided the stated conditions are met.
|
||||
This License explicitly affirms your unlimited permission to run the unmodified
|
||||
Program. The output from running a covered work is covered by this License
|
||||
only if the output, given its content, constitutes a covered work. This License
|
||||
acknowledges your rights of fair use or other equivalent, as provided by copyright
|
||||
law.
|
||||
|
||||
You may make, run and propagate covered works that you do not convey, without
|
||||
conditions so long as your license otherwise remains in force. You may convey
|
||||
covered works to others for the sole purpose of having them make modifications
|
||||
exclusively for you, or provide you with facilities for running those works,
|
||||
provided that you comply with the terms of this License in conveying all material
|
||||
for which you do not control copyright. Those thus making or running the covered
|
||||
works for you must do so exclusively on your behalf, under your direction
|
||||
and control, on terms that prohibit them from making any copies of your copyrighted
|
||||
material outside their relationship with you.
|
||||
|
||||
Conveying under any other circumstances is permitted solely under the conditions
|
||||
stated below. Sublicensing is not allowed; section 10 makes it unnecessary.
|
||||
|
||||
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||
|
||||
No covered work shall be deemed part of an effective technological measure
|
||||
under any applicable law fulfilling obligations under article 11 of the WIPO
|
||||
copyright treaty adopted on 20 December 1996, or similar laws prohibiting
|
||||
or restricting circumvention of such measures.
|
||||
|
||||
When you convey a covered work, you waive any legal power to forbid circumvention
|
||||
of technological measures to the extent such circumvention is effected by
|
||||
exercising rights under this License with respect to the covered work, and
|
||||
you disclaim any intention to limit operation or modification of the work
|
||||
as a means of enforcing, against the work's users, your or third parties'
|
||||
legal rights to forbid circumvention of technological measures.
|
||||
|
||||
4. Conveying Verbatim Copies.
|
||||
|
||||
You may convey verbatim copies of the Program's source code as you receive
|
||||
it, in any medium, provided that you conspicuously and appropriately publish
|
||||
on each copy an appropriate copyright notice; keep intact all notices stating
|
||||
that this License and any non-permissive terms added in accord with section
|
||||
7 apply to the code; keep intact all notices of the absence of any warranty;
|
||||
and give all recipients a copy of this License along with the Program.
|
||||
|
||||
You may charge any price or no price for each copy that you convey, and you
|
||||
may offer support or warranty protection for a fee.
|
||||
|
||||
5. Conveying Modified Source Versions.
|
||||
|
||||
You may convey a work based on the Program, or the modifications to produce
|
||||
it from the Program, in the form of source code under the terms of section
|
||||
4, provided that you also meet all of these conditions:
|
||||
|
||||
a) The work must carry prominent notices stating that you modified it, and
|
||||
giving a relevant date.
|
||||
|
||||
b) The work must carry prominent notices stating that it is released under
|
||||
this License and any conditions added under section 7. This requirement modifies
|
||||
the requirement in section 4 to "keep intact all notices".
|
||||
|
||||
c) You must license the entire work, as a whole, under this License to anyone
|
||||
who comes into possession of a copy. This License will therefore apply, along
|
||||
with any applicable section 7 additional terms, to the whole of the work,
|
||||
and all its parts, regardless of how they are packaged. This License gives
|
||||
no permission to license the work in any other way, but it does not invalidate
|
||||
such permission if you have separately received it.
|
||||
|
||||
d) If the work has interactive user interfaces, each must display Appropriate
|
||||
Legal Notices; however, if the Program has interactive interfaces that do
|
||||
not display Appropriate Legal Notices, your work need not make them do so.
|
||||
|
||||
A compilation of a covered work with other separate and independent works,
|
||||
which are not by their nature extensions of the covered work, and which are
|
||||
not combined with it such as to form a larger program, in or on a volume of
|
||||
a storage or distribution medium, is called an "aggregate" if the compilation
|
||||
and its resulting copyright are not used to limit the access or legal rights
|
||||
of the compilation's users beyond what the individual works permit. Inclusion
|
||||
of a covered work in an aggregate does not cause this License to apply to
|
||||
the other parts of the aggregate.
|
||||
|
||||
6. Conveying Non-Source Forms.
|
||||
|
||||
You may convey a covered work in object code form under the terms of sections
|
||||
4 and 5, provided that you also convey the machine-readable Corresponding
|
||||
Source under the terms of this License, in one of these ways:
|
||||
|
||||
a) Convey the object code in, or embodied in, a physical product (including
|
||||
a physical distribution medium), accompanied by the Corresponding Source fixed
|
||||
on a durable physical medium customarily used for software interchange.
|
||||
|
||||
b) Convey the object code in, or embodied in, a physical product (including
|
||||
a physical distribution medium), accompanied by a written offer, valid for
|
||||
at least three years and valid for as long as you offer spare parts or customer
|
||||
support for that product model, to give anyone who possesses the object code
|
||||
either (1) a copy of the Corresponding Source for all the software in the
|
||||
product that is covered by this License, on a durable physical medium customarily
|
||||
used for software interchange, for a price no more than your reasonable cost
|
||||
of physically performing this conveying of source, or (2) access to copy the
|
||||
Corresponding Source from a network server at no charge.
|
||||
|
||||
c) Convey individual copies of the object code with a copy of the written
|
||||
offer to provide the Corresponding Source. This alternative is allowed only
|
||||
occasionally and noncommercially, and only if you received the object code
|
||||
with such an offer, in accord with subsection 6b.
|
||||
|
||||
d) Convey the object code by offering access from a designated place (gratis
|
||||
or for a charge), and offer equivalent access to the Corresponding Source
|
||||
in the same way through the same place at no further charge. You need not
|
||||
require recipients to copy the Corresponding Source along with the object
|
||||
code. If the place to copy the object code is a network server, the Corresponding
|
||||
Source may be on a different server (operated by you or a third party) that
|
||||
supports equivalent copying facilities, provided you maintain clear directions
|
||||
next to the object code saying where to find the Corresponding Source. Regardless
|
||||
of what server hosts the Corresponding Source, you remain obligated to ensure
|
||||
that it is available for as long as needed to satisfy these requirements.
|
||||
|
||||
e) Convey the object code using peer-to-peer transmission, provided you inform
|
||||
other peers where the object code and Corresponding Source of the work are
|
||||
being offered to the general public at no charge under subsection 6d.
|
||||
|
||||
A separable portion of the object code, whose source code is excluded from
|
||||
the Corresponding Source as a System Library, need not be included in conveying
|
||||
the object code work.
|
||||
|
||||
A "User Product" is either (1) a "consumer product", which means any tangible
|
||||
personal property which is normally used for personal, family, or household
|
||||
purposes, or (2) anything designed or sold for incorporation into a dwelling.
|
||||
In determining whether a product is a consumer product, doubtful cases shall
|
||||
be resolved in favor of coverage. For a particular product received by a particular
|
||||
user, "normally used" refers to a typical or common use of that class of product,
|
||||
regardless of the status of the particular user or of the way in which the
|
||||
particular user actually uses, or expects or is expected to use, the product.
|
||||
A product is a consumer product regardless of whether the product has substantial
|
||||
commercial, industrial or non-consumer uses, unless such uses represent the
|
||||
only significant mode of use of the product.
|
||||
|
||||
"Installation Information" for a User Product means any methods, procedures,
|
||||
authorization keys, or other information required to install and execute modified
|
||||
versions of a covered work in that User Product from a modified version of
|
||||
its Corresponding Source. The information must suffice to ensure that the
|
||||
continued functioning of the modified object code is in no case prevented
|
||||
or interfered with solely because modification has been made.
|
||||
|
||||
If you convey an object code work under this section in, or with, or specifically
|
||||
for use in, a User Product, and the conveying occurs as part of a transaction
|
||||
in which the right of possession and use of the User Product is transferred
|
||||
to the recipient in perpetuity or for a fixed term (regardless of how the
|
||||
transaction is characterized), the Corresponding Source conveyed under this
|
||||
section must be accompanied by the Installation Information. But this requirement
|
||||
does not apply if neither you nor any third party retains the ability to install
|
||||
modified object code on the User Product (for example, the work has been installed
|
||||
in ROM).
|
||||
|
||||
The requirement to provide Installation Information does not include a requirement
|
||||
to continue to provide support service, warranty, or updates for a work that
|
||||
has been modified or installed by the recipient, or for the User Product in
|
||||
which it has been modified or installed. Access to a network may be denied
|
||||
when the modification itself materially and adversely affects the operation
|
||||
of the network or violates the rules and protocols for communication across
|
||||
the network.
|
||||
|
||||
Corresponding Source conveyed, and Installation Information provided, in accord
|
||||
with this section must be in a format that is publicly documented (and with
|
||||
an implementation available to the public in source code form), and must require
|
||||
no special password or key for unpacking, reading or copying.
|
||||
|
||||
7. Additional Terms.
|
||||
|
||||
"Additional permissions" are terms that supplement the terms of this License
|
||||
by making exceptions from one or more of its conditions. Additional permissions
|
||||
that are applicable to the entire Program shall be treated as though they
|
||||
were included in this License, to the extent that they are valid under applicable
|
||||
law. If additional permissions apply only to part of the Program, that part
|
||||
may be used separately under those permissions, but the entire Program remains
|
||||
governed by this License without regard to the additional permissions.
|
||||
|
||||
When you convey a copy of a covered work, you may at your option remove any
|
||||
additional permissions from that copy, or from any part of it. (Additional
|
||||
permissions may be written to require their own removal in certain cases when
|
||||
you modify the work.) You may place additional permissions on material, added
|
||||
by you to a covered work, for which you have or can give appropriate copyright
|
||||
permission.
|
||||
|
||||
Notwithstanding any other provision of this License, for material you add
|
||||
to a covered work, you may (if authorized by the copyright holders of that
|
||||
material) supplement the terms of this License with terms:
|
||||
|
||||
a) Disclaiming warranty or limiting liability differently from the terms of
|
||||
sections 15 and 16 of this License; or
|
||||
|
||||
b) Requiring preservation of specified reasonable legal notices or author
|
||||
attributions in that material or in the Appropriate Legal Notices displayed
|
||||
by works containing it; or
|
||||
|
||||
c) Prohibiting misrepresentation of the origin of that material, or requiring
|
||||
that modified versions of such material be marked in reasonable ways as different
|
||||
from the original version; or
|
||||
|
||||
d) Limiting the use for publicity purposes of names of licensors or authors
|
||||
of the material; or
|
||||
|
||||
e) Declining to grant rights under trademark law for use of some trade names,
|
||||
trademarks, or service marks; or
|
||||
|
||||
f) Requiring indemnification of licensors and authors of that material by
|
||||
anyone who conveys the material (or modified versions of it) with contractual
|
||||
assumptions of liability to the recipient, for any liability that these contractual
|
||||
assumptions directly impose on those licensors and authors.
|
||||
|
||||
All other non-permissive additional terms are considered "further restrictions"
|
||||
within the meaning of section 10. If the Program as you received it, or any
|
||||
part of it, contains a notice stating that it is governed by this License
|
||||
along with a term that is a further restriction, you may remove that term.
|
||||
If a license document contains a further restriction but permits relicensing
|
||||
or conveying under this License, you may add to a covered work material governed
|
||||
by the terms of that license document, provided that the further restriction
|
||||
does not survive such relicensing or conveying.
|
||||
|
||||
If you add terms to a covered work in accord with this section, you must place,
|
||||
in the relevant source files, a statement of the additional terms that apply
|
||||
to those files, or a notice indicating where to find the applicable terms.
|
||||
|
||||
Additional terms, permissive or non-permissive, may be stated in the form
|
||||
of a separately written license, or stated as exceptions; the above requirements
|
||||
apply either way.
|
||||
|
||||
8. Termination.
|
||||
|
||||
You may not propagate or modify a covered work except as expressly provided
|
||||
under this License. Any attempt otherwise to propagate or modify it is void,
|
||||
and will automatically terminate your rights under this License (including
|
||||
any patent licenses granted under the third paragraph of section 11).
|
||||
|
||||
However, if you cease all violation of this License, then your license from
|
||||
a particular copyright holder is reinstated (a) provisionally, unless and
|
||||
until the copyright holder explicitly and finally terminates your license,
|
||||
and (b) permanently, if the copyright holder fails to notify you of the violation
|
||||
by some reasonable means prior to 60 days after the cessation.
|
||||
|
||||
Moreover, your license from a particular copyright holder is reinstated permanently
|
||||
if the copyright holder notifies you of the violation by some reasonable means,
|
||||
this is the first time you have received notice of violation of this License
|
||||
(for any work) from that copyright holder, and you cure the violation prior
|
||||
to 30 days after your receipt of the notice.
|
||||
|
||||
Termination of your rights under this section does not terminate the licenses
|
||||
of parties who have received copies or rights from you under this License.
|
||||
If your rights have been terminated and not permanently reinstated, you do
|
||||
not qualify to receive new licenses for the same material under section 10.
|
||||
|
||||
9. Acceptance Not Required for Having Copies.
|
||||
|
||||
You are not required to accept this License in order to receive or run a copy
|
||||
of the Program. Ancillary propagation of a covered work occurring solely as
|
||||
a consequence of using peer-to-peer transmission to receive a copy likewise
|
||||
does not require acceptance. However, nothing other than this License grants
|
||||
you permission to propagate or modify any covered work. These actions infringe
|
||||
copyright if you do not accept this License. Therefore, by modifying or propagating
|
||||
a covered work, you indicate your acceptance of this License to do so.
|
||||
|
||||
10. Automatic Licensing of Downstream Recipients.
|
||||
|
||||
Each time you convey a covered work, the recipient automatically receives
|
||||
a license from the original licensors, to run, modify and propagate that work,
|
||||
subject to this License. You are not responsible for enforcing compliance
|
||||
by third parties with this License.
|
||||
|
||||
An "entity transaction" is a transaction transferring control of an organization,
|
||||
or substantially all assets of one, or subdividing an organization, or merging
|
||||
organizations. If propagation of a covered work results from an entity transaction,
|
||||
each party to that transaction who receives a copy of the work also receives
|
||||
whatever licenses to the work the party's predecessor in interest had or could
|
||||
give under the previous paragraph, plus a right to possession of the Corresponding
|
||||
Source of the work from the predecessor in interest, if the predecessor has
|
||||
it or can get it with reasonable efforts.
|
||||
|
||||
You may not impose any further restrictions on the exercise of the rights
|
||||
granted or affirmed under this License. For example, you may not impose a
|
||||
license fee, royalty, or other charge for exercise of rights granted under
|
||||
this License, and you may not initiate litigation (including a cross-claim
|
||||
or counterclaim in a lawsuit) alleging that any patent claim is infringed
|
||||
by making, using, selling, offering for sale, or importing the Program or
|
||||
any portion of it.
|
||||
|
||||
11. Patents.
|
||||
|
||||
A "contributor" is a copyright holder who authorizes use under this License
|
||||
of the Program or a work on which the Program is based. The work thus licensed
|
||||
is called the contributor's "contributor version".
|
||||
|
||||
A contributor's "essential patent claims" are all patent claims owned or controlled
|
||||
by the contributor, whether already acquired or hereafter acquired, that would
|
||||
be infringed by some manner, permitted by this License, of making, using,
|
||||
or selling its contributor version, but do not include claims that would be
|
||||
infringed only as a consequence of further modification of the contributor
|
||||
version. For purposes of this definition, "control" includes the right to
|
||||
grant patent sublicenses in a manner consistent with the requirements of this
|
||||
License.
|
||||
|
||||
Each contributor grants you a non-exclusive, worldwide, royalty-free patent
|
||||
license under the contributor's essential patent claims, to make, use, sell,
|
||||
offer for sale, import and otherwise run, modify and propagate the contents
|
||||
of its contributor version.
|
||||
|
||||
In the following three paragraphs, a "patent license" is any express agreement
|
||||
or commitment, however denominated, not to enforce a patent (such as an express
|
||||
permission to practice a patent or covenant not to s ue for patent infringement).
|
||||
To "grant" such a patent license to a party means to make such an agreement
|
||||
or commitment not to enforce a patent against the party.
|
||||
|
||||
If you convey a covered work, knowingly relying on a patent license, and the
|
||||
Corresponding Source of the work is not available for anyone to copy, free
|
||||
of charge and under the terms of this License, through a publicly available
|
||||
network server or other readily accessible means, then you must either (1)
|
||||
cause the Corresponding Source to be so available, or (2) arrange to deprive
|
||||
yourself of the benefit of the patent license for this particular work, or
|
||||
(3) arrange, in a manner consistent with the requirements of this License,
|
||||
to extend the patent
|
||||
|
||||
license to downstream recipients. "Knowingly relying" means you have actual
|
||||
knowledge that, but for the patent license, your conveying the covered work
|
||||
in a country, or your recipient's use of the covered work in a country, would
|
||||
infringe one or more identifiable patents in that country that you have reason
|
||||
to believe are valid.
|
||||
|
||||
If, pursuant to or in connection with a single transaction or arrangement,
|
||||
you convey, or propagate by procuring conveyance of, a covered work, and grant
|
||||
a patent license to some of the parties receiving the covered work authorizing
|
||||
them to use, propagate, modify or convey a specific copy of the covered work,
|
||||
then the patent license you grant is automatically extended to all recipients
|
||||
of the covered work and works based on it.
|
||||
|
||||
A patent license is "discriminatory" if it does not include within the scope
|
||||
of its coverage, prohibits the exercise of, or is conditioned on the non-exercise
|
||||
of one or more of the rights that are specifically granted under this License.
|
||||
You may not convey a covered work if you are a party to an arrangement with
|
||||
a third party that is in the business of distributing software, under which
|
||||
you make payment to the third party based on the extent of your activity of
|
||||
conveying the work, and under which the third party grants, to any of the
|
||||
parties who would receive the covered work from you, a discriminatory patent
|
||||
license (a) in connection with copies of the covered work conveyed by you
|
||||
(or copies made from those copies), or (b) primarily for and in connection
|
||||
with specific products or compilations that contain the covered work, unless
|
||||
you entered into that arrangement, or that patent license was granted, prior
|
||||
to 28 March 2007.
|
||||
|
||||
Nothing in this License shall be construed as excluding or limiting any implied
|
||||
license or other defenses to infringement that may otherwise be available
|
||||
to you under applicable patent law.
|
||||
|
||||
12. No Surrender of Others' Freedom.
|
||||
|
||||
If conditions are imposed on you (whether by court order, agreement or otherwise)
|
||||
that contradict the conditions of this License, they do not excuse you from
|
||||
the conditions of this License. If you cannot convey a covered work so as
|
||||
to satisfy simultaneously your obligations under this License and any other
|
||||
pertinent obligations, then as a consequence you may
|
||||
|
||||
not convey it at all. For example, if you agree to terms that obligate you
|
||||
to collect a royalty for further conveying from those to whom you convey the
|
||||
Program, the only way you could satisfy both those terms and this License
|
||||
would be to refrain entirely from conveying the Program.
|
||||
|
||||
13. Remote Network Interaction; Use with the GNU General Public License.
|
||||
|
||||
Notwithstanding any other provision of this License, if you modify the Program,
|
||||
your modified version must prominently offer all users interacting with it
|
||||
remotely through a computer network (if your version supports such interaction)
|
||||
an opportunity to receive the Corresponding Source of your version by providing
|
||||
access to the Corresponding Source from a network server at no charge, through
|
||||
some standard or customary means of facilitating copying of software. This
|
||||
Corresponding Source shall include the Corresponding Source for any work covered
|
||||
by version 3 of the GNU General Public License that is incorporated pursuant
|
||||
to the following paragraph.
|
||||
|
||||
Notwithstanding any other provision of this License, you have permission to
|
||||
link or combine any covered work with a work licensed under version 3 of the
|
||||
GNU General Public License into a single combined work, and to convey the
|
||||
resulting work. The terms of this License will continue to apply to the part
|
||||
which is the covered work, but the work with which it is combined will remain
|
||||
governed by version 3 of the GNU General Public License.
|
||||
|
||||
14. Revised Versions of this License.
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions of the
|
||||
GNU Affero General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to address
|
||||
new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the Program specifies
|
||||
that a certain numbered version of the GNU Affero General Public License "or
|
||||
any later version" applies to it, you have the option of following the terms
|
||||
and conditions either of that numbered version or of any later version published
|
||||
by the Free Software Foundation. If the Program does not specify a version
|
||||
number of the GNU Affero General Public License, you may choose any version
|
||||
ever published by the Free Software Foundation.
|
||||
|
||||
If the Program specifies that a proxy can decide which future versions of
|
||||
the GNU Affero General Public License can be used, that proxy's public statement
|
||||
of acceptance of a version permanently authorizes you to choose that version
|
||||
for the Program.
|
||||
|
||||
Later license versions may give you additional or different permissions. However,
|
||||
no additional obligations are imposed on any author or copyright holder as
|
||||
a result of your choosing to follow a later version.
|
||||
|
||||
15. Disclaimer of Warranty.
|
||||
|
||||
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE
|
||||
LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
|
||||
OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER
|
||||
EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
||||
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
||||
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM
|
||||
PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR
|
||||
CORRECTION.
|
||||
|
||||
16. Limitation of Liability.
|
||||
|
||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL
|
||||
ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM
|
||||
AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL,
|
||||
INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO
|
||||
USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED
|
||||
INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE
|
||||
PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER
|
||||
PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
|
||||
|
||||
17. Interpretation of Sections 15 and 16.
|
||||
|
||||
If the disclaimer of warranty and limitation of liability provided above cannot
|
||||
be given local legal effect according to their terms, reviewing courts shall
|
||||
apply local law that most closely approximates an absolute waiver of all civil
|
||||
liability in connection with the Program, unless a warranty or assumption
|
||||
of liability accompanies a copy of the Program in return for a fee. END OF
|
||||
TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest possible
|
||||
use to the public, the best way to achieve this is to make it free software
|
||||
which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest to attach
|
||||
them to the start of each source file to most effectively state the exclusion
|
||||
of warranty; and each file should have at least the "copyright" line and a
|
||||
pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify it under
|
||||
the terms of the GNU Affero General Public License as published by the Free
|
||||
Software Foundation, either version 3 of the License, or (at your option)
|
||||
any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful, but WITHOUT
|
||||
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||
FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
|
||||
details.
|
||||
|
||||
You should have received a copy of the GNU Affero General Public License along
|
||||
with this program. If not, see <http s ://www.gnu.org/licenses/>.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If your software can interact with users remotely through a computer network,
|
||||
you should also make sure that it provides a way for users to get its source.
|
||||
For example, if your program is a web application, its interface could display
|
||||
a "Source" link that leads users to an archive of the code. There are many
|
||||
ways you could offer source, and different solutions will be better for different
|
||||
programs; see section 13 for the specific requirements.
|
||||
|
||||
You should also get your employer (if you work as a programmer) or school,
|
||||
if any, to sign a "copyright disclaimer" for the program, if necessary. For
|
||||
more information on this, and how to apply and follow the GNU AGPL, see <http
|
||||
s ://www.gnu.org/licenses/>.
|
97
README.md
|
@ -1,64 +1,57 @@
|
|||
# site
|
||||
# deuxfleurs.fr - site web
|
||||
|
||||
[![Build Status](https://drone.deuxfleurs.fr/api/badges/Deuxfleurs/site/status.svg?ref=refs/heads/main)](https://drone.deuxfleurs.fr/Deuxfleurs/site)
|
||||
|
||||
Ce dépôt git contient les sources pour le site [deuxfleurs.fr](https://deuxfleurs.fr/).
|
||||
C'est ici que vous pourrez apporter des modifications au site.
|
||||
|
||||
## Comment ajouter du contenu ?
|
||||
|
||||
Prérequis :
|
||||
- Un compte sur cette instance gitea.
|
||||
- Le logiciel git d'installé. [téléchager](https://git-scm.com/downloads).
|
||||
|
||||
Pour commencer, assurez-vous d'être connecté.
|
||||
Ensuite cliquez sur le bouton "Bifurcation" en haut à droite (*fork* en anglais).
|
||||
Finalement, vous pourrez cloner votre dépôt en local :
|
||||
Le site web en ASCII Art de Deuxfleurs
|
||||
|
||||
```
|
||||
git clone https://git.deuxfleurs.fr/<votre nom d'utilisateur>/site.git
|
||||
'\ ; /'
|
||||
·`.;.;.`·
|
||||
·— · · —·
|
||||
·`';.;'`·
|
||||
'/ ; \'
|
||||
.-.
|
||||
.( ; ;
|
||||
.-. (_.():')
|
||||
_( ' ; /(' ; .)
|
||||
( `(·)` ; ``-'
|
||||
',_' `·,'
|
||||
`-`\| +---------------------+
|
||||
. /) | B i e n v e n u e |
|
||||
(\|/ +---------------------+
|
||||
| | |
|
||||
.,.,\/,}\|//,,, ;/,,\/ | , \,,,;/. ;.;, |,,,,;,;..
|
||||
|
||||
|
||||
Fabriquons un internet convivial ⤵
|
||||
```
|
||||
|
||||
Pour ajouter du contenu, vous pouvez tout simplement ajouter un fichier dans le dossier `src`.
|
||||
Par exemple, le fichier `src/Association/Statuts.md` se retrouve à l'adresse `https://deuxfleurs.fr/Association/Statuts.html`.
|
||||
## Structure
|
||||
|
||||
Deux formats de fichiers différents sont supportés pour l'instant :
|
||||
- `static` - Ce qui doit être envoyé sur le bucket
|
||||
- `r` - Pour faire un système de redirection minimaliste. Exemple: `deuxfleurs.fr/r/rdv23`
|
||||
- `.well-known` - Utilisé par Matrix, Thunderbird, chatons.org et d'autres pour la configuration automatique de pas mal de services
|
||||
- `img` le dossier qui contient les images
|
||||
- `res` - Ce qui peut être utile pour modifier le site web
|
||||
- `calendar.txt` - Tous les calendriers ASCII jusqu'à Décembre 2024
|
||||
|
||||
- `.md` pour Markdown. [documentation](https://fr.wikipedia.org/wiki/Markdown). Rapide à apprendre, il est très pratique pour rajouter du contenu sans se poser la question de l'apparence.
|
||||
- `.pug` pour Pug. [documentation](https://pugjs.org). PugJS est une syntaxe différente pour représenter du HTML. Elle offre donc toute la souplesse de ce dernier et s'adapte plus à des mises en page complexe.
|
||||
## Générateur de site statique ?
|
||||
|
||||
Si vous ne savez pas par où commencer, choisissez markdown !
|
||||
N'hésitez pas à vous inspirer des fichiers existants.
|
||||
Pas maintenant.
|
||||
|
||||
Une fois vos modifications terminées, vous pouvez commit et push :
|
||||
## Déployer en pré-production
|
||||
|
||||
Fait automatiquement via Woodpecker sur la branche `preprod`.
|
||||
|
||||
Le site en pré-production est ensuite accessible sur <https://preprod-site.web.deuxfleurs.fr/>
|
||||
|
||||
## Déployer en production
|
||||
|
||||
Fait automatiquement via Woodpecker sur la branche `main`.
|
||||
|
||||
## Déployer en production à la main (pas recommandé)
|
||||
|
||||
En cas de déploiement manuel : ⚠️ NE FAITES PAS `--delete` car il est fort probable
|
||||
que des trucs qui doivent rester dans le bucket ne sont pas copiés ici.
|
||||
|
||||
```
|
||||
git add src/Association/MonFichier.md
|
||||
git commit -a
|
||||
git push
|
||||
aws s3 sync static/ s3://deuxfleurs.fr
|
||||
```
|
||||
|
||||
Ensuite, vous pouvez créer une demande d'ajout (*pull request* ou *merge request* en anglais) depuis cette adresse (ou en cliquant sur l'onglet éponyme) : https://git.deuxfleurs.fr/Deuxfleurs/site/pulls
|
||||
|
||||
## Comment prévisualiser mes modifications ?
|
||||
|
||||
Prérequis :
|
||||
- nodejs et npm d'installé. [télécharger](https://nodejs.org/en/download/)
|
||||
|
||||
Vous pourriez vouloir vérifier que vos modifications rendent bien avant de faire votre demande d'ajout.
|
||||
Pour cela, nous utilisons un script de notre cru nommé `render.js`. Il convertit le dossier `src/` vers un site web contenu dans le dossier `static/` et peut, optionnellement, servir de serveur web.
|
||||
|
||||
La façon la plus simple de prévisualiser vos modifications est donc de :
|
||||
|
||||
```bash
|
||||
npm install # installer les dépendances
|
||||
LISTEN=3000 node render.js # effectuer le rendu puis démarrer un serveur web sur le port 3000
|
||||
```
|
||||
|
||||
Votre aperçu est alors disponible à cette URL : http://127.0.0.1:3000
|
||||
|
||||
À chaque modification, vous pouvez arrêter la dernière commande (CTRL+C) et la relancer pour forcer le rendu.
|
||||
|
||||
## Comment le site est mis à jour depuis ce dépôt ?
|
||||
|
||||
*Nous sommes actuellement dans une phase de transition sur ce point. Veuillez contacter un·e des maintainers. Si vous êtes maintainer ou curieux·se, vous pouvez vous réferrer au fichier DEPLOY.md*
|
||||
|
|
7
deploy
|
@ -1,7 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
shopt -s expand_aliases
|
||||
source .awsclirc
|
||||
npm install
|
||||
node render.js
|
||||
awsdf s3 sync --size-only static s3://deuxfleurs.fr
|
909
package-lock.json
generated
|
@ -1,909 +0,0 @@
|
|||
{
|
||||
"name": "site",
|
||||
"version": "1.0.0",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "site",
|
||||
"version": "1.0.0",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"clean-css": "^5.1.2",
|
||||
"jstransformer-markdown-it": "^2.1.0",
|
||||
"marked": "^0.8.2",
|
||||
"pug": "^3.0.2",
|
||||
"source-map": "^0.7.3",
|
||||
"uglify-js": "^3.13.3"
|
||||
},
|
||||
"devDependencies": {}
|
||||
},
|
||||
"node_modules/@babel/helper-validator-identifier": {
|
||||
"version": "7.12.11",
|
||||
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz",
|
||||
"integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw=="
|
||||
},
|
||||
"node_modules/@babel/parser": {
|
||||
"version": "7.13.15",
|
||||
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.13.15.tgz",
|
||||
"integrity": "sha512-b9COtcAlVEQljy/9fbcMHpG+UIW9ReF+gpaxDHTlZd0c6/UU9ng8zdySAW9sRTzpvcdCHn6bUcbuYUgGzLAWVQ==",
|
||||
"bin": {
|
||||
"parser": "bin/babel-parser.js"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@babel/types": {
|
||||
"version": "7.13.14",
|
||||
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.13.14.tgz",
|
||||
"integrity": "sha512-A2aa3QTkWoyqsZZFl56MLUsfmh7O0gN41IPvXAE/++8ojpbz12SszD7JEGYVdn4f9Kt4amIei07swF1h4AqmmQ==",
|
||||
"dependencies": {
|
||||
"@babel/helper-validator-identifier": "^7.12.11",
|
||||
"lodash": "^4.17.19",
|
||||
"to-fast-properties": "^2.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/acorn": {
|
||||
"version": "7.4.1",
|
||||
"resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz",
|
||||
"integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==",
|
||||
"bin": {
|
||||
"acorn": "bin/acorn"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=0.4.0"
|
||||
}
|
||||
},
|
||||
"node_modules/argparse": {
|
||||
"version": "1.0.10",
|
||||
"resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
|
||||
"integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
|
||||
"dependencies": {
|
||||
"sprintf-js": "~1.0.2"
|
||||
}
|
||||
},
|
||||
"node_modules/asap": {
|
||||
"version": "2.0.6",
|
||||
"resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz",
|
||||
"integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY="
|
||||
},
|
||||
"node_modules/assert-never": {
|
||||
"version": "1.2.1",
|
||||
"resolved": "https://registry.npmjs.org/assert-never/-/assert-never-1.2.1.tgz",
|
||||
"integrity": "sha512-TaTivMB6pYI1kXwrFlEhLeGfOqoDNdTxjCdwRfFFkEA30Eu+k48W34nlok2EYWJfFFzqaEmichdNM7th6M5HNw=="
|
||||
},
|
||||
"node_modules/babel-walk": {
|
||||
"version": "3.0.0-canary-5",
|
||||
"resolved": "https://registry.npmjs.org/babel-walk/-/babel-walk-3.0.0-canary-5.tgz",
|
||||
"integrity": "sha512-GAwkz0AihzY5bkwIY5QDR+LvsRQgB/B+1foMPvi0FZPMl5fjD7ICiznUiBdLYMH1QYe6vqu4gWYytZOccLouFw==",
|
||||
"dependencies": {
|
||||
"@babel/types": "^7.9.6"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 10.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/call-bind": {
|
||||
"version": "1.0.2",
|
||||
"resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz",
|
||||
"integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==",
|
||||
"dependencies": {
|
||||
"function-bind": "^1.1.1",
|
||||
"get-intrinsic": "^1.0.2"
|
||||
},
|
||||
"funding": {
|
||||
"url": "https://github.com/sponsors/ljharb"
|
||||
}
|
||||
},
|
||||
"node_modules/character-parser": {
|
||||
"version": "2.2.0",
|
||||
"resolved": "https://registry.npmjs.org/character-parser/-/character-parser-2.2.0.tgz",
|
||||
"integrity": "sha1-x84o821LzZdE5f/CxfzeHHMmH8A=",
|
||||
"dependencies": {
|
||||
"is-regex": "^1.0.3"
|
||||
}
|
||||
},
|
||||
"node_modules/clean-css": {
|
||||
"version": "5.1.2",
|
||||
"resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.1.2.tgz",
|
||||
"integrity": "sha512-QcaGg9OuMo+0Ds933yLOY+gHPWbxhxqF0HDexmToPf8pczvmvZGYzd+QqWp9/mkucAOKViI+dSFOqoZIvXbeBw==",
|
||||
"dependencies": {
|
||||
"source-map": "~0.6.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 10.0"
|
||||
}
|
||||
},
|
||||
"node_modules/clean-css/node_modules/source-map": {
|
||||
"version": "0.6.1",
|
||||
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
|
||||
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==",
|
||||
"engines": {
|
||||
"node": ">=0.10.0"
|
||||
}
|
||||
},
|
||||
"node_modules/constantinople": {
|
||||
"version": "4.0.1",
|
||||
"resolved": "https://registry.npmjs.org/constantinople/-/constantinople-4.0.1.tgz",
|
||||
"integrity": "sha512-vCrqcSIq4//Gx74TXXCGnHpulY1dskqLTFGDmhrGxzeXL8lF8kvXv6mpNWlJj1uD4DW23D4ljAqbY4RRaaUZIw==",
|
||||
"dependencies": {
|
||||
"@babel/parser": "^7.6.0",
|
||||
"@babel/types": "^7.6.1"
|
||||
}
|
||||
},
|
||||
"node_modules/doctypes": {
|
||||
"version": "1.1.0",
|
||||
"resolved": "https://registry.npmjs.org/doctypes/-/doctypes-1.1.0.tgz",
|
||||
"integrity": "sha1-6oCxBqh1OHdOijpKWv4pPeSJ4Kk="
|
||||
},
|
||||
"node_modules/entities": {
|
||||
"version": "1.1.2",
|
||||
"resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz",
|
||||
"integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w=="
|
||||
},
|
||||
"node_modules/function-bind": {
|
||||
"version": "1.1.1",
|
||||
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
|
||||
"integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="
|
||||
},
|
||||
"node_modules/get-intrinsic": {
|
||||
"version": "1.1.1",
|
||||
"resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz",
|
||||
"integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==",
|
||||
"dependencies": {
|
||||
"function-bind": "^1.1.1",
|
||||
"has": "^1.0.3",
|
||||
"has-symbols": "^1.0.1"
|
||||
},
|
||||
"funding": {
|
||||
"url": "https://github.com/sponsors/ljharb"
|
||||
}
|
||||
},
|
||||
"node_modules/has": {
|
||||
"version": "1.0.3",
|
||||
"resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
|
||||
"integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==",
|
||||
"dependencies": {
|
||||
"function-bind": "^1.1.1"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 0.4.0"
|
||||
}
|
||||
},
|
||||
"node_modules/has-symbols": {
|
||||
"version": "1.0.2",
|
||||
"resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz",
|
||||
"integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==",
|
||||
"engines": {
|
||||
"node": ">= 0.4"
|
||||
},
|
||||
"funding": {
|
||||
"url": "https://github.com/sponsors/ljharb"
|
||||
}
|
||||
},
|
||||
"node_modules/is-core-module": {
|
||||
"version": "2.2.0",
|
||||
"resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.2.0.tgz",
|
||||
"integrity": "sha512-XRAfAdyyY5F5cOXn7hYQDqh2Xmii+DEfIcQGxK/uNwMHhIkPWO0g8msXcbzLe+MpGoR951MlqM/2iIlU4vKDdQ==",
|
||||
"dependencies": {
|
||||
"has": "^1.0.3"
|
||||
},
|
||||
"funding": {
|
||||
"url": "https://github.com/sponsors/ljharb"
|
||||
}
|
||||
},
|
||||
"node_modules/is-expression": {
|
||||
"version": "4.0.0",
|
||||
"resolved": "https://registry.npmjs.org/is-expression/-/is-expression-4.0.0.tgz",
|
||||
"integrity": "sha512-zMIXX63sxzG3XrkHkrAPvm/OVZVSCPNkwMHU8oTX7/U3AL78I0QXCEICXUM13BIa8TYGZ68PiTKfQz3yaTNr4A==",
|
||||
"dependencies": {
|
||||
"acorn": "^7.1.1",
|
||||
"object-assign": "^4.1.1"
|
||||
}
|
||||
},
|
||||
"node_modules/is-promise": {
|
||||
"version": "2.2.2",
|
||||
"resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.2.2.tgz",
|
||||
"integrity": "sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ=="
|
||||
},
|
||||
"node_modules/is-regex": {
|
||||
"version": "1.1.2",
|
||||
"resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.2.tgz",
|
||||
"integrity": "sha512-axvdhb5pdhEVThqJzYXwMlVuZwC+FF2DpcOhTS+y/8jVq4trxyPgfcwIxIKiyeuLlSQYKkmUaPQJ8ZE4yNKXDg==",
|
||||
"dependencies": {
|
||||
"call-bind": "^1.0.2",
|
||||
"has-symbols": "^1.0.1"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 0.4"
|
||||
},
|
||||
"funding": {
|
||||
"url": "https://github.com/sponsors/ljharb"
|
||||
}
|
||||
},
|
||||
"node_modules/js-stringify": {
|
||||
"version": "1.0.2",
|
||||
"resolved": "https://registry.npmjs.org/js-stringify/-/js-stringify-1.0.2.tgz",
|
||||
"integrity": "sha1-Fzb939lyTyijaCrcYjCufk6Weds="
|
||||
},
|
||||
"node_modules/jstransformer": {
|
||||
"version": "1.0.0",
|
||||
"resolved": "https://registry.npmjs.org/jstransformer/-/jstransformer-1.0.0.tgz",
|
||||
"integrity": "sha1-7Yvwkh4vPx7U1cGkT2hwntJHIsM=",
|
||||
"dependencies": {
|
||||
"is-promise": "^2.0.0",
|
||||
"promise": "^7.0.1"
|
||||
}
|
||||
},
|
||||
"node_modules/jstransformer-markdown-it": {
|
||||
"version": "2.1.0",
|
||||
"resolved": "https://registry.npmjs.org/jstransformer-markdown-it/-/jstransformer-markdown-it-2.1.0.tgz",
|
||||
"integrity": "sha1-aewwzkUYvtWZezjwJ2SOjChekvc=",
|
||||
"dependencies": {
|
||||
"markdown-it": "^8.0.0"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=7"
|
||||
}
|
||||
},
|
||||
"node_modules/linkify-it": {
|
||||
"version": "2.2.0",
|
||||
"resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-2.2.0.tgz",
|
||||
"integrity": "sha512-GnAl/knGn+i1U/wjBz3akz2stz+HrHLsxMwHQGofCDfPvlf+gDKN58UtfmUquTY4/MXeE2x7k19KQmeoZi94Iw==",
|
||||
"dependencies": {
|
||||
"uc.micro": "^1.0.1"
|
||||
}
|
||||
},
|
||||
"node_modules/lodash": {
|
||||
"version": "4.17.21",
|
||||
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
|
||||
"integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg=="
|
||||
},
|
||||
"node_modules/markdown-it": {
|
||||
"version": "8.4.2",
|
||||
"resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-8.4.2.tgz",
|
||||
"integrity": "sha512-GcRz3AWTqSUphY3vsUqQSFMbgR38a4Lh3GWlHRh/7MRwz8mcu9n2IO7HOh+bXHrR9kOPDl5RNCaEsrneb+xhHQ==",
|
||||
"dependencies": {
|
||||
"argparse": "^1.0.7",
|
||||
"entities": "~1.1.1",
|
||||
"linkify-it": "^2.0.0",
|
||||
"mdurl": "^1.0.1",
|
||||
"uc.micro": "^1.0.5"
|
||||
},
|
||||
"bin": {
|
||||
"markdown-it": "bin/markdown-it.js"
|
||||
}
|
||||
},
|
||||
"node_modules/marked": {
|
||||
"version": "0.8.2",
|
||||
"resolved": "https://registry.npmjs.org/marked/-/marked-0.8.2.tgz",
|
||||
"integrity": "sha512-EGwzEeCcLniFX51DhTpmTom+dSA/MG/OBUDjnWtHbEnjAH180VzUeAw+oE4+Zv+CoYBWyRlYOTR0N8SO9R1PVw==",
|
||||
"bin": {
|
||||
"marked": "bin/marked"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 8.16.2"
|
||||
}
|
||||
},
|
||||
"node_modules/mdurl": {
|
||||
"version": "1.0.1",
|
||||
"resolved": "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz",
|
||||
"integrity": "sha1-/oWy7HWlkDfyrf7BAP1sYBdhFS4="
|
||||
},
|
||||
"node_modules/object-assign": {
|
||||
"version": "4.1.1",
|
||||
"resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
|
||||
"integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=",
|
||||
"engines": {
|
||||
"node": ">=0.10.0"
|
||||
}
|
||||
},
|
||||
"node_modules/path-parse": {
|
||||
"version": "1.0.6",
|
||||
"resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz",
|
||||
"integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw=="
|
||||
},
|
||||
"node_modules/promise": {
|
||||
"version": "7.3.1",
|
||||
"resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz",
|
||||
"integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==",
|
||||
"dependencies": {
|
||||
"asap": "~2.0.3"
|
||||
}
|
||||
},
|
||||
"node_modules/pug": {
|
||||
"version": "3.0.2",
|
||||
"resolved": "https://registry.npmjs.org/pug/-/pug-3.0.2.tgz",
|
||||
"integrity": "sha512-bp0I/hiK1D1vChHh6EfDxtndHji55XP/ZJKwsRqrz6lRia6ZC2OZbdAymlxdVFwd1L70ebrVJw4/eZ79skrIaw==",
|
||||
"dependencies": {
|
||||
"pug-code-gen": "^3.0.2",
|
||||
"pug-filters": "^4.0.0",
|
||||
"pug-lexer": "^5.0.1",
|
||||
"pug-linker": "^4.0.0",
|
||||
"pug-load": "^3.0.0",
|
||||
"pug-parser": "^6.0.0",
|
||||
"pug-runtime": "^3.0.1",
|
||||
"pug-strip-comments": "^2.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/pug-attrs": {
|
||||
"version": "3.0.0",
|
||||
"resolved": "https://registry.npmjs.org/pug-attrs/-/pug-attrs-3.0.0.tgz",
|
||||
"integrity": "sha512-azINV9dUtzPMFQktvTXciNAfAuVh/L/JCl0vtPCwvOA21uZrC08K/UnmrL+SXGEVc1FwzjW62+xw5S/uaLj6cA==",
|
||||
"dependencies": {
|
||||
"constantinople": "^4.0.1",
|
||||
"js-stringify": "^1.0.2",
|
||||
"pug-runtime": "^3.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/pug-code-gen": {
|
||||
"version": "3.0.2",
|
||||
"resolved": "https://registry.npmjs.org/pug-code-gen/-/pug-code-gen-3.0.2.tgz",
|
||||
"integrity": "sha512-nJMhW16MbiGRiyR4miDTQMRWDgKplnHyeLvioEJYbk1RsPI3FuA3saEP8uwnTb2nTJEKBU90NFVWJBk4OU5qyg==",
|
||||
"dependencies": {
|
||||
"constantinople": "^4.0.1",
|
||||
"doctypes": "^1.1.0",
|
||||
"js-stringify": "^1.0.2",
|
||||
"pug-attrs": "^3.0.0",
|
||||
"pug-error": "^2.0.0",
|
||||
"pug-runtime": "^3.0.0",
|
||||
"void-elements": "^3.1.0",
|
||||
"with": "^7.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/pug-error": {
|
||||
"version": "2.0.0",
|
||||
"resolved": "https://registry.npmjs.org/pug-error/-/pug-error-2.0.0.tgz",
|
||||
"integrity": "sha512-sjiUsi9M4RAGHktC1drQfCr5C5eriu24Lfbt4s+7SykztEOwVZtbFk1RRq0tzLxcMxMYTBR+zMQaG07J/btayQ=="
|
||||
},
|
||||
"node_modules/pug-filters": {
|
||||
"version": "4.0.0",
|
||||
"resolved": "https://registry.npmjs.org/pug-filters/-/pug-filters-4.0.0.tgz",
|
||||
"integrity": "sha512-yeNFtq5Yxmfz0f9z2rMXGw/8/4i1cCFecw/Q7+D0V2DdtII5UvqE12VaZ2AY7ri6o5RNXiweGH79OCq+2RQU4A==",
|
||||
"dependencies": {
|
||||
"constantinople": "^4.0.1",
|
||||
"jstransformer": "1.0.0",
|
||||
"pug-error": "^2.0.0",
|
||||
"pug-walk": "^2.0.0",
|
||||
"resolve": "^1.15.1"
|
||||
}
|
||||
},
|
||||
"node_modules/pug-lexer": {
|
||||
"version": "5.0.1",
|
||||
"resolved": "https://registry.npmjs.org/pug-lexer/-/pug-lexer-5.0.1.tgz",
|
||||
"integrity": "sha512-0I6C62+keXlZPZkOJeVam9aBLVP2EnbeDw3An+k0/QlqdwH6rv8284nko14Na7c0TtqtogfWXcRoFE4O4Ff20w==",
|
||||
"dependencies": {
|
||||
"character-parser": "^2.2.0",
|
||||
"is-expression": "^4.0.0",
|
||||
"pug-error": "^2.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/pug-linker": {
|
||||
"version": "4.0.0",
|
||||
"resolved": "https://registry.npmjs.org/pug-linker/-/pug-linker-4.0.0.tgz",
|
||||
"integrity": "sha512-gjD1yzp0yxbQqnzBAdlhbgoJL5qIFJw78juN1NpTLt/mfPJ5VgC4BvkoD3G23qKzJtIIXBbcCt6FioLSFLOHdw==",
|
||||
"dependencies": {
|
||||
"pug-error": "^2.0.0",
|
||||
"pug-walk": "^2.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/pug-load": {
|
||||
"version": "3.0.0",
|
||||
"resolved": "https://registry.npmjs.org/pug-load/-/pug-load-3.0.0.tgz",
|
||||
"integrity": "sha512-OCjTEnhLWZBvS4zni/WUMjH2YSUosnsmjGBB1An7CsKQarYSWQ0GCVyd4eQPMFJqZ8w9xgs01QdiZXKVjk92EQ==",
|
||||
"dependencies": {
|
||||
"object-assign": "^4.1.1",
|
||||
"pug-walk": "^2.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/pug-parser": {
|
||||
"version": "6.0.0",
|
||||
"resolved": "https://registry.npmjs.org/pug-parser/-/pug-parser-6.0.0.tgz",
|
||||
"integrity": "sha512-ukiYM/9cH6Cml+AOl5kETtM9NR3WulyVP2y4HOU45DyMim1IeP/OOiyEWRr6qk5I5klpsBnbuHpwKmTx6WURnw==",
|
||||
"dependencies": {
|
||||
"pug-error": "^2.0.0",
|
||||
"token-stream": "1.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/pug-runtime": {
|
||||
"version": "3.0.1",
|
||||
"resolved": "https://registry.npmjs.org/pug-runtime/-/pug-runtime-3.0.1.tgz",
|
||||
"integrity": "sha512-L50zbvrQ35TkpHwv0G6aLSuueDRwc/97XdY8kL3tOT0FmhgG7UypU3VztfV/LATAvmUfYi4wNxSajhSAeNN+Kg=="
|
||||
},
|
||||
"node_modules/pug-strip-comments": {
|
||||
"version": "2.0.0",
|
||||
"resolved": "https://registry.npmjs.org/pug-strip-comments/-/pug-strip-comments-2.0.0.tgz",
|
||||
"integrity": "sha512-zo8DsDpH7eTkPHCXFeAk1xZXJbyoTfdPlNR0bK7rpOMuhBYb0f5qUVCO1xlsitYd3w5FQTK7zpNVKb3rZoUrrQ==",
|
||||
"dependencies": {
|
||||
"pug-error": "^2.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/pug-walk": {
|
||||
"version": "2.0.0",
|
||||
"resolved": "https://registry.npmjs.org/pug-walk/-/pug-walk-2.0.0.tgz",
|
||||
"integrity": "sha512-yYELe9Q5q9IQhuvqsZNwA5hfPkMJ8u92bQLIMcsMxf/VADjNtEYptU+inlufAFYcWdHlwNfZOEnOOQrZrcyJCQ=="
|
||||
},
|
||||
"node_modules/resolve": {
|
||||
"version": "1.20.0",
|
||||
"resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz",
|
||||
"integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==",
|
||||
"dependencies": {
|
||||
"is-core-module": "^2.2.0",
|
||||
"path-parse": "^1.0.6"
|
||||
},
|
||||
"funding": {
|
||||
"url": "https://github.com/sponsors/ljharb"
|
||||
}
|
||||
},
|
||||
"node_modules/source-map": {
|
||||
"version": "0.7.3",
|
||||
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz",
|
||||
"integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==",
|
||||
"engines": {
|
||||
"node": ">= 8"
|
||||
}
|
||||
},
|
||||
"node_modules/sprintf-js": {
|
||||
"version": "1.0.3",
|
||||
"resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz",
|
||||
"integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw="
|
||||
},
|
||||
"node_modules/to-fast-properties": {
|
||||
"version": "2.0.0",
|
||||
"resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz",
|
||||
"integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=",
|
||||
"engines": {
|
||||
"node": ">=4"
|
||||
}
|
||||
},
|
||||
"node_modules/token-stream": {
|
||||
"version": "1.0.0",
|
||||
"resolved": "https://registry.npmjs.org/token-stream/-/token-stream-1.0.0.tgz",
|
||||
"integrity": "sha1-zCAOqyYT9BZtJ/+a/HylbUnfbrQ="
|
||||
},
|
||||
"node_modules/uc.micro": {
|
||||
"version": "1.0.6",
|
||||
"resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-1.0.6.tgz",
|
||||
"integrity": "sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA=="
|
||||
},
|
||||
"node_modules/uglify-js": {
|
||||
"version": "3.13.3",
|
||||
"resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.13.3.tgz",
|
||||
"integrity": "sha512-otIc7O9LyxpUcQoXzj2hL4LPWKklO6LJWoJUzNa8A17Xgi4fOeDC8FBDOLHnC/Slo1CQgsZMcM6as0M76BZaig==",
|
||||
"bin": {
|
||||
"uglifyjs": "bin/uglifyjs"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=0.8.0"
|
||||
}
|
||||
},
|
||||
"node_modules/void-elements": {
|
||||
"version": "3.1.0",
|
||||
"resolved": "https://registry.npmjs.org/void-elements/-/void-elements-3.1.0.tgz",
|
||||
"integrity": "sha1-YU9/v42AHwu18GYfWy9XhXUOTwk=",
|
||||
"engines": {
|
||||
"node": ">=0.10.0"
|
||||
}
|
||||
},
|
||||
"node_modules/with": {
|
||||
"version": "7.0.2",
|
||||
"resolved": "https://registry.npmjs.org/with/-/with-7.0.2.tgz",
|
||||
"integrity": "sha512-RNGKj82nUPg3g5ygxkQl0R937xLyho1J24ItRCBTr/m1YnZkzJy1hUiHUJrc/VlsDQzsCnInEGSg3bci0Lmd4w==",
|
||||
"dependencies": {
|
||||
"@babel/parser": "^7.9.6",
|
||||
"@babel/types": "^7.9.6",
|
||||
"assert-never": "^1.2.1",
|
||||
"babel-walk": "3.0.0-canary-5"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">= 10.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"dependencies": {
|
||||
"@babel/helper-validator-identifier": {
|
||||
"version": "7.12.11",
|
||||
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz",
|
||||
"integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw=="
|
||||
},
|
||||
"@babel/parser": {
|
||||
"version": "7.13.15",
|
||||
"resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.13.15.tgz",
|
||||
"integrity": "sha512-b9COtcAlVEQljy/9fbcMHpG+UIW9ReF+gpaxDHTlZd0c6/UU9ng8zdySAW9sRTzpvcdCHn6bUcbuYUgGzLAWVQ=="
|
||||
},
|
||||
"@babel/types": {
|
||||
"version": "7.13.14",
|
||||
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.13.14.tgz",
|
||||
"integrity": "sha512-A2aa3QTkWoyqsZZFl56MLUsfmh7O0gN41IPvXAE/++8ojpbz12SszD7JEGYVdn4f9Kt4amIei07swF1h4AqmmQ==",
|
||||
"requires": {
|
||||
"@babel/helper-validator-identifier": "^7.12.11",
|
||||
"lodash": "^4.17.19",
|
||||
"to-fast-properties": "^2.0.0"
|
||||
}
|
||||
},
|
||||
"acorn": {
|
||||
"version": "7.4.1",
|
||||
"resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz",
|
||||
"integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A=="
|
||||
},
|
||||
"argparse": {
|
||||
"version": "1.0.10",
|
||||
"resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz",
|
||||
"integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==",
|
||||
"requires": {
|
||||
"sprintf-js": "~1.0.2"
|
||||
}
|
||||
},
|
||||
"asap": {
|
||||
"version": "2.0.6",
|
||||
"resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz",
|
||||
"integrity": "sha1-5QNHYR1+aQlDIIu9r+vLwvuGbUY="
|
||||
},
|
||||
"assert-never": {
|
||||
"version": "1.2.1",
|
||||
"resolved": "https://registry.npmjs.org/assert-never/-/assert-never-1.2.1.tgz",
|
||||
"integrity": "sha512-TaTivMB6pYI1kXwrFlEhLeGfOqoDNdTxjCdwRfFFkEA30Eu+k48W34nlok2EYWJfFFzqaEmichdNM7th6M5HNw=="
|
||||
},
|
||||
"babel-walk": {
|
||||
"version": "3.0.0-canary-5",
|
||||
"resolved": "https://registry.npmjs.org/babel-walk/-/babel-walk-3.0.0-canary-5.tgz",
|
||||
"integrity": "sha512-GAwkz0AihzY5bkwIY5QDR+LvsRQgB/B+1foMPvi0FZPMl5fjD7ICiznUiBdLYMH1QYe6vqu4gWYytZOccLouFw==",
|
||||
"requires": {
|
||||
"@babel/types": "^7.9.6"
|
||||
}
|
||||
},
|
||||
"call-bind": {
|
||||
"version": "1.0.2",
|
||||
"resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz",
|
||||
"integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==",
|
||||
"requires": {
|
||||
"function-bind": "^1.1.1",
|
||||
"get-intrinsic": "^1.0.2"
|
||||
}
|
||||
},
|
||||
"character-parser": {
|
||||
"version": "2.2.0",
|
||||
"resolved": "https://registry.npmjs.org/character-parser/-/character-parser-2.2.0.tgz",
|
||||
"integrity": "sha1-x84o821LzZdE5f/CxfzeHHMmH8A=",
|
||||
"requires": {
|
||||
"is-regex": "^1.0.3"
|
||||
}
|
||||
},
|
||||
"clean-css": {
|
||||
"version": "5.1.2",
|
||||
"resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.1.2.tgz",
|
||||
"integrity": "sha512-QcaGg9OuMo+0Ds933yLOY+gHPWbxhxqF0HDexmToPf8pczvmvZGYzd+QqWp9/mkucAOKViI+dSFOqoZIvXbeBw==",
|
||||
"requires": {
|
||||
"source-map": "~0.6.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"source-map": {
|
||||
"version": "0.6.1",
|
||||
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz",
|
||||
"integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g=="
|
||||
}
|
||||
}
|
||||
},
|
||||
"constantinople": {
|
||||
"version": "4.0.1",
|
||||
"resolved": "https://registry.npmjs.org/constantinople/-/constantinople-4.0.1.tgz",
|
||||
"integrity": "sha512-vCrqcSIq4//Gx74TXXCGnHpulY1dskqLTFGDmhrGxzeXL8lF8kvXv6mpNWlJj1uD4DW23D4ljAqbY4RRaaUZIw==",
|
||||
"requires": {
|
||||
"@babel/parser": "^7.6.0",
|
||||
"@babel/types": "^7.6.1"
|
||||
}
|
||||
},
|
||||
"doctypes": {
|
||||
"version": "1.1.0",
|
||||
"resolved": "https://registry.npmjs.org/doctypes/-/doctypes-1.1.0.tgz",
|
||||
"integrity": "sha1-6oCxBqh1OHdOijpKWv4pPeSJ4Kk="
|
||||
},
|
||||
"entities": {
|
||||
"version": "1.1.2",
|
||||
"resolved": "https://registry.npmjs.org/entities/-/entities-1.1.2.tgz",
|
||||
"integrity": "sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w=="
|
||||
},
|
||||
"function-bind": {
|
||||
"version": "1.1.1",
|
||||
"resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
|
||||
"integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="
|
||||
},
|
||||
"get-intrinsic": {
|
||||
"version": "1.1.1",
|
||||
"resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz",
|
||||
"integrity": "sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==",
|
||||
"requires": {
|
||||
"function-bind": "^1.1.1",
|
||||
"has": "^1.0.3",
|
||||
"has-symbols": "^1.0.1"
|
||||
}
|
||||
},
|
||||
"has": {
|
||||
"version": "1.0.3",
|
||||
"resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
|
||||
"integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==",
|
||||
"requires": {
|
||||
"function-bind": "^1.1.1"
|
||||
}
|
||||
},
|
||||
"has-symbols": {
|
||||
"version": "1.0.2",
|
||||
"resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.2.tgz",
|
||||
"integrity": "sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw=="
|
||||
},
|
||||
"is-core-module": {
|
||||
"version": "2.2.0",
|
||||
"resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.2.0.tgz",
|
||||
"integrity": "sha512-XRAfAdyyY5F5cOXn7hYQDqh2Xmii+DEfIcQGxK/uNwMHhIkPWO0g8msXcbzLe+MpGoR951MlqM/2iIlU4vKDdQ==",
|
||||
"requires": {
|
||||
"has": "^1.0.3"
|
||||
}
|
||||
},
|
||||
"is-expression": {
|
||||
"version": "4.0.0",
|
||||
"resolved": "https://registry.npmjs.org/is-expression/-/is-expression-4.0.0.tgz",
|
||||
"integrity": "sha512-zMIXX63sxzG3XrkHkrAPvm/OVZVSCPNkwMHU8oTX7/U3AL78I0QXCEICXUM13BIa8TYGZ68PiTKfQz3yaTNr4A==",
|
||||
"requires": {
|
||||
"acorn": "^7.1.1",
|
||||
"object-assign": "^4.1.1"
|
||||
}
|
||||
},
|
||||
"is-promise": {
|
||||
"version": "2.2.2",
|
||||
"resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.2.2.tgz",
|
||||
"integrity": "sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ=="
|
||||
},
|
||||
"is-regex": {
|
||||
"version": "1.1.2",
|
||||
"resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.2.tgz",
|
||||
"integrity": "sha512-axvdhb5pdhEVThqJzYXwMlVuZwC+FF2DpcOhTS+y/8jVq4trxyPgfcwIxIKiyeuLlSQYKkmUaPQJ8ZE4yNKXDg==",
|
||||
"requires": {
|
||||
"call-bind": "^1.0.2",
|
||||
"has-symbols": "^1.0.1"
|
||||
}
|
||||
},
|
||||
"js-stringify": {
|
||||
"version": "1.0.2",
|
||||
"resolved": "https://registry.npmjs.org/js-stringify/-/js-stringify-1.0.2.tgz",
|
||||
"integrity": "sha1-Fzb939lyTyijaCrcYjCufk6Weds="
|
||||
},
|
||||
"jstransformer": {
|
||||
"version": "1.0.0",
|
||||
"resolved": "https://registry.npmjs.org/jstransformer/-/jstransformer-1.0.0.tgz",
|
||||
"integrity": "sha1-7Yvwkh4vPx7U1cGkT2hwntJHIsM=",
|
||||
"requires": {
|
||||
"is-promise": "^2.0.0",
|
||||
"promise": "^7.0.1"
|
||||
}
|
||||
},
|
||||
"jstransformer-markdown-it": {
|
||||
"version": "2.1.0",
|
||||
"resolved": "https://registry.npmjs.org/jstransformer-markdown-it/-/jstransformer-markdown-it-2.1.0.tgz",
|
||||
"integrity": "sha1-aewwzkUYvtWZezjwJ2SOjChekvc=",
|
||||
"requires": {
|
||||
"markdown-it": "^8.0.0"
|
||||
}
|
||||
},
|
||||
"linkify-it": {
|
||||
"version": "2.2.0",
|
||||
"resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-2.2.0.tgz",
|
||||
"integrity": "sha512-GnAl/knGn+i1U/wjBz3akz2stz+HrHLsxMwHQGofCDfPvlf+gDKN58UtfmUquTY4/MXeE2x7k19KQmeoZi94Iw==",
|
||||
"requires": {
|
||||
"uc.micro": "^1.0.1"
|
||||
}
|
||||
},
|
||||
"lodash": {
|
||||
"version": "4.17.21",
|
||||
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
|
||||
"integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg=="
|
||||
},
|
||||
"markdown-it": {
|
||||
"version": "8.4.2",
|
||||
"resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-8.4.2.tgz",
|
||||
"integrity": "sha512-GcRz3AWTqSUphY3vsUqQSFMbgR38a4Lh3GWlHRh/7MRwz8mcu9n2IO7HOh+bXHrR9kOPDl5RNCaEsrneb+xhHQ==",
|
||||
"requires": {
|
||||
"argparse": "^1.0.7",
|
||||
"entities": "~1.1.1",
|
||||
"linkify-it": "^2.0.0",
|
||||
"mdurl": "^1.0.1",
|
||||
"uc.micro": "^1.0.5"
|
||||
}
|
||||
},
|
||||
"marked": {
|
||||
"version": "0.8.2",
|
||||
"resolved": "https://registry.npmjs.org/marked/-/marked-0.8.2.tgz",
|
||||
"integrity": "sha512-EGwzEeCcLniFX51DhTpmTom+dSA/MG/OBUDjnWtHbEnjAH180VzUeAw+oE4+Zv+CoYBWyRlYOTR0N8SO9R1PVw=="
|
||||
},
|
||||
"mdurl": {
|
||||
"version": "1.0.1",
|
||||
"resolved": "https://registry.npmjs.org/mdurl/-/mdurl-1.0.1.tgz",
|
||||
"integrity": "sha1-/oWy7HWlkDfyrf7BAP1sYBdhFS4="
|
||||
},
|
||||
"object-assign": {
|
||||
"version": "4.1.1",
|
||||
"resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
|
||||
"integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM="
|
||||
},
|
||||
"path-parse": {
|
||||
"version": "1.0.6",
|
||||
"resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz",
|
||||
"integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw=="
|
||||
},
|
||||
"promise": {
|
||||
"version": "7.3.1",
|
||||
"resolved": "https://registry.npmjs.org/promise/-/promise-7.3.1.tgz",
|
||||
"integrity": "sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==",
|
||||
"requires": {
|
||||
"asap": "~2.0.3"
|
||||
}
|
||||
},
|
||||
"pug": {
|
||||
"version": "3.0.2",
|
||||
"resolved": "https://registry.npmjs.org/pug/-/pug-3.0.2.tgz",
|
||||
"integrity": "sha512-bp0I/hiK1D1vChHh6EfDxtndHji55XP/ZJKwsRqrz6lRia6ZC2OZbdAymlxdVFwd1L70ebrVJw4/eZ79skrIaw==",
|
||||
"requires": {
|
||||
"pug-code-gen": "^3.0.2",
|
||||
"pug-filters": "^4.0.0",
|
||||
"pug-lexer": "^5.0.1",
|
||||
"pug-linker": "^4.0.0",
|
||||
"pug-load": "^3.0.0",
|
||||
"pug-parser": "^6.0.0",
|
||||
"pug-runtime": "^3.0.1",
|
||||
"pug-strip-comments": "^2.0.0"
|
||||
}
|
||||
},
|
||||
"pug-attrs": {
|
||||
"version": "3.0.0",
|
||||
"resolved": "https://registry.npmjs.org/pug-attrs/-/pug-attrs-3.0.0.tgz",
|
||||
"integrity": "sha512-azINV9dUtzPMFQktvTXciNAfAuVh/L/JCl0vtPCwvOA21uZrC08K/UnmrL+SXGEVc1FwzjW62+xw5S/uaLj6cA==",
|
||||
"requires": {
|
||||
"constantinople": "^4.0.1",
|
||||
"js-stringify": "^1.0.2",
|
||||
"pug-runtime": "^3.0.0"
|
||||
}
|
||||
},
|
||||
"pug-code-gen": {
|
||||
"version": "3.0.2",
|
||||
"resolved": "https://registry.npmjs.org/pug-code-gen/-/pug-code-gen-3.0.2.tgz",
|
||||
"integrity": "sha512-nJMhW16MbiGRiyR4miDTQMRWDgKplnHyeLvioEJYbk1RsPI3FuA3saEP8uwnTb2nTJEKBU90NFVWJBk4OU5qyg==",
|
||||
"requires": {
|
||||
"constantinople": "^4.0.1",
|
||||
"doctypes": "^1.1.0",
|
||||
"js-stringify": "^1.0.2",
|
||||
"pug-attrs": "^3.0.0",
|
||||
"pug-error": "^2.0.0",
|
||||
"pug-runtime": "^3.0.0",
|
||||
"void-elements": "^3.1.0",
|
||||
"with": "^7.0.0"
|
||||
}
|
||||
},
|
||||
"pug-error": {
|
||||
"version": "2.0.0",
|
||||
"resolved": "https://registry.npmjs.org/pug-error/-/pug-error-2.0.0.tgz",
|
||||
"integrity": "sha512-sjiUsi9M4RAGHktC1drQfCr5C5eriu24Lfbt4s+7SykztEOwVZtbFk1RRq0tzLxcMxMYTBR+zMQaG07J/btayQ=="
|
||||
},
|
||||
"pug-filters": {
|
||||
"version": "4.0.0",
|
||||
"resolved": "https://registry.npmjs.org/pug-filters/-/pug-filters-4.0.0.tgz",
|
||||
"integrity": "sha512-yeNFtq5Yxmfz0f9z2rMXGw/8/4i1cCFecw/Q7+D0V2DdtII5UvqE12VaZ2AY7ri6o5RNXiweGH79OCq+2RQU4A==",
|
||||
"requires": {
|
||||
"constantinople": "^4.0.1",
|
||||
"jstransformer": "1.0.0",
|
||||
"pug-error": "^2.0.0",
|
||||
"pug-walk": "^2.0.0",
|
||||
"resolve": "^1.15.1"
|
||||
}
|
||||
},
|
||||
"pug-lexer": {
|
||||
"version": "5.0.1",
|
||||
"resolved": "https://registry.npmjs.org/pug-lexer/-/pug-lexer-5.0.1.tgz",
|
||||
"integrity": "sha512-0I6C62+keXlZPZkOJeVam9aBLVP2EnbeDw3An+k0/QlqdwH6rv8284nko14Na7c0TtqtogfWXcRoFE4O4Ff20w==",
|
||||
"requires": {
|
||||
"character-parser": "^2.2.0",
|
||||
"is-expression": "^4.0.0",
|
||||
"pug-error": "^2.0.0"
|
||||
}
|
||||
},
|
||||
"pug-linker": {
|
||||
"version": "4.0.0",
|
||||
"resolved": "https://registry.npmjs.org/pug-linker/-/pug-linker-4.0.0.tgz",
|
||||
"integrity": "sha512-gjD1yzp0yxbQqnzBAdlhbgoJL5qIFJw78juN1NpTLt/mfPJ5VgC4BvkoD3G23qKzJtIIXBbcCt6FioLSFLOHdw==",
|
||||
"requires": {
|
||||
"pug-error": "^2.0.0",
|
||||
"pug-walk": "^2.0.0"
|
||||
}
|
||||
},
|
||||
"pug-load": {
|
||||
"version": "3.0.0",
|
||||
"resolved": "https://registry.npmjs.org/pug-load/-/pug-load-3.0.0.tgz",
|
||||
"integrity": "sha512-OCjTEnhLWZBvS4zni/WUMjH2YSUosnsmjGBB1An7CsKQarYSWQ0GCVyd4eQPMFJqZ8w9xgs01QdiZXKVjk92EQ==",
|
||||
"requires": {
|
||||
"object-assign": "^4.1.1",
|
||||
"pug-walk": "^2.0.0"
|
||||
}
|
||||
},
|
||||
"pug-parser": {
|
||||
"version": "6.0.0",
|
||||
"resolved": "https://registry.npmjs.org/pug-parser/-/pug-parser-6.0.0.tgz",
|
||||
"integrity": "sha512-ukiYM/9cH6Cml+AOl5kETtM9NR3WulyVP2y4HOU45DyMim1IeP/OOiyEWRr6qk5I5klpsBnbuHpwKmTx6WURnw==",
|
||||
"requires": {
|
||||
"pug-error": "^2.0.0",
|
||||
"token-stream": "1.0.0"
|
||||
}
|
||||
},
|
||||
"pug-runtime": {
|
||||
"version": "3.0.1",
|
||||
"resolved": "https://registry.npmjs.org/pug-runtime/-/pug-runtime-3.0.1.tgz",
|
||||
"integrity": "sha512-L50zbvrQ35TkpHwv0G6aLSuueDRwc/97XdY8kL3tOT0FmhgG7UypU3VztfV/LATAvmUfYi4wNxSajhSAeNN+Kg=="
|
||||
},
|
||||
"pug-strip-comments": {
|
||||
"version": "2.0.0",
|
||||
"resolved": "https://registry.npmjs.org/pug-strip-comments/-/pug-strip-comments-2.0.0.tgz",
|
||||
"integrity": "sha512-zo8DsDpH7eTkPHCXFeAk1xZXJbyoTfdPlNR0bK7rpOMuhBYb0f5qUVCO1xlsitYd3w5FQTK7zpNVKb3rZoUrrQ==",
|
||||
"requires": {
|
||||
"pug-error": "^2.0.0"
|
||||
}
|
||||
},
|
||||
"pug-walk": {
|
||||
"version": "2.0.0",
|
||||
"resolved": "https://registry.npmjs.org/pug-walk/-/pug-walk-2.0.0.tgz",
|
||||
"integrity": "sha512-yYELe9Q5q9IQhuvqsZNwA5hfPkMJ8u92bQLIMcsMxf/VADjNtEYptU+inlufAFYcWdHlwNfZOEnOOQrZrcyJCQ=="
|
||||
},
|
||||
"resolve": {
|
||||
"version": "1.20.0",
|
||||
"resolved": "https://registry.npmjs.org/resolve/-/resolve-1.20.0.tgz",
|
||||
"integrity": "sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A==",
|
||||
"requires": {
|
||||
"is-core-module": "^2.2.0",
|
||||
"path-parse": "^1.0.6"
|
||||
}
|
||||
},
|
||||
"source-map": {
|
||||
"version": "0.7.3",
|
||||
"resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz",
|
||||
"integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ=="
|
||||
},
|
||||
"sprintf-js": {
|
||||
"version": "1.0.3",
|
||||
"resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz",
|
||||
"integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw="
|
||||
},
|
||||
"to-fast-properties": {
|
||||
"version": "2.0.0",
|
||||
"resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz",
|
||||
"integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4="
|
||||
},
|
||||
"token-stream": {
|
||||
"version": "1.0.0",
|
||||
"resolved": "https://registry.npmjs.org/token-stream/-/token-stream-1.0.0.tgz",
|
||||
"integrity": "sha1-zCAOqyYT9BZtJ/+a/HylbUnfbrQ="
|
||||
},
|
||||
"uc.micro": {
|
||||
"version": "1.0.6",
|
||||
"resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-1.0.6.tgz",
|
||||
"integrity": "sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA=="
|
||||
},
|
||||
"uglify-js": {
|
||||
"version": "3.13.3",
|
||||
"resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.13.3.tgz",
|
||||
"integrity": "sha512-otIc7O9LyxpUcQoXzj2hL4LPWKklO6LJWoJUzNa8A17Xgi4fOeDC8FBDOLHnC/Slo1CQgsZMcM6as0M76BZaig=="
|
||||
},
|
||||
"void-elements": {
|
||||
"version": "3.1.0",
|
||||
"resolved": "https://registry.npmjs.org/void-elements/-/void-elements-3.1.0.tgz",
|
||||
"integrity": "sha1-YU9/v42AHwu18GYfWy9XhXUOTwk="
|
||||
},
|
||||
"with": {
|
||||
"version": "7.0.2",
|
||||
"resolved": "https://registry.npmjs.org/with/-/with-7.0.2.tgz",
|
||||
"integrity": "sha512-RNGKj82nUPg3g5ygxkQl0R937xLyho1J24ItRCBTr/m1YnZkzJy1hUiHUJrc/VlsDQzsCnInEGSg3bci0Lmd4w==",
|
||||
"requires": {
|
||||
"@babel/parser": "^7.9.6",
|
||||
"@babel/types": "^7.9.6",
|
||||
"assert-never": "^1.2.1",
|
||||
"babel-walk": "3.0.0-canary-5"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
23
package.json
|
@ -1,23 +0,0 @@
|
|||
{
|
||||
"name": "site",
|
||||
"version": "1.0.0",
|
||||
"description": "deuxfleurs.fr",
|
||||
"main": "render.js",
|
||||
"dependencies": {
|
||||
"clean-css": "^5.1.2",
|
||||
"jstransformer-markdown-it": "^2.1.0",
|
||||
"marked": "^0.8.2",
|
||||
"pug": "^3.0.2",
|
||||
"source-map": "^0.7.3",
|
||||
"uglify-js": "^3.13.3"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git@git.deuxfleurs.fr:Deuxfleurs/site.git"
|
||||
},
|
||||
"author": "",
|
||||
"license": "ISC"
|
||||
}
|
36
rapport.md
Normal file
|
@ -0,0 +1,36 @@
|
|||
# DeuxFleurs, un site accessible ? -- Sommaire exécutif
|
||||
|
||||
_Lundi 12 février 2024, par Adrian Rosin & Adrien Luxey-Bitri_
|
||||
|
||||
## Des principes solides
|
||||
|
||||
Dans l’ensemble, deuxfleurs a posé des bases solides en termes d’accessibilité. Le code est correctement structuré et pensé pour garantir une accessibilité maximale. Il met en pratique les principaux standards d’accessibilité issus de W3C, ce qui témoigne de la qualité du travail réalisé. Il faut également noter que pour chaque élément du site, des recherches ont été réalisées, rien n'a été laissé au hasard et une attention méticuleuse quant à l'accessibilité a été pensée.
|
||||
|
||||
Par conséquent, on s’aperçoit que deuxfleurs, avant même de passer des tests fonctionnels, valide la plupart des principes d’accessibilité sur le web. Le site valide par exemple les instructions que met à disposition Access42 (https://access42.net/ressources/site-web-accessible/), une coopérative française qui réalise des audits sur l’accessibilité numérique et dont les critères post-audit permettent dans un premier temps de savoir si un site est sur la bonne direction ou non.
|
||||
|
||||
## Tests fonctionnels
|
||||
|
||||
Si l’on passe le site sur des outils permettant de vérifier l’accessibilité (ADA, WCAG, WCAG2, … Pour plus d'informations, voir https://www.w3.org/WAI/ER/tools//index.html), celui-ci passe plus des trois quarts des tests concernant l’accessibilité. Les tests critiques passant dans l’intégralité. Les seuls tests non validés sont des erreurs potentielles sujettes à interprétation, qui résultent d'un choix conscient chez Deuxfleurs (commande artistique).
|
||||
|
||||
Pour donner des exemples de suggestions d'améliorations d'accéssibilité que l'on peut proposer après une première analyse du site :
|
||||
l’utilisation de balises `svg` à la place de balises préformatées `pre` pour gérer l’ASCII art en terme d’image et non en terme de texte ;
|
||||
l'affichage des calendriers en tant qu’objet (`table`) plutôt qu’en texte sous balise préformatée ;
|
||||
l'augmentation du contraste texte/fond…
|
||||
|
||||
En deuxième analyse, on comprend que les idées ci-dessus ont été analysées, et que les solutions retenues résultent d'un compromis entre accessibilité et démarche artistique.
|
||||
|
||||
## Commande artistique
|
||||
|
||||
Il a été demandé à la créatrice du site de concevoir un site simple et léger (sans image sauf l'illustration de Ronce).
|
||||
De plus, le code HTML se lit comme un journal, où ASCII art et textes se succèdent sans friction.
|
||||
On comprend mieux alors, que l'usage de `svg` contredit l'esprit recherché, puisqu'il ajoute une lourdeur inutile au code source.
|
||||
|
||||
## En pratique
|
||||
|
||||
Le site dans son ensemble actuel peut être considéré comme accessible. Lorsque le site est utilisé avec un narrateur, tout le contenu est décrit de manière simple et fluide assurant une bonne compréhension de celui-ci pour tous les utilisateurs. Malgré cela, le résultat obtenu diffère en fonction du système d’exploitation, du narrateur utilisé ou même du paramétrage de celui-ci.
|
||||
|
||||
A ce titre, une expérience à plus grande échelle impliquant des personnes directement concernées par les lecteurs d’écran pourrait nous en apprendre davantage quant à l’accessibilité de deuxfleurs.
|
||||
|
||||
## Nous contacter
|
||||
|
||||
Si vous souhaitez nous faire des retours concernant l’accessibilité du site deuxfleurs, vous pouvez nous contacter [ici](https://matrix.to/#/#accessibilite:deuxfleurs.fr) ou via coucou _chez_ deuxfleurs.fr
|
264
render.js
|
@ -1,264 +0,0 @@
|
|||
'use strict'
|
||||
|
||||
const pug = require('pug')
|
||||
const marked = require('marked')
|
||||
const fs = require('fs').promises
|
||||
const http = require('http')
|
||||
|
||||
const unit = (...args) => null
|
||||
const log = process.env.VERBOSE ? console.log : unit
|
||||
|
||||
const walk = async (path, filename) => {
|
||||
log('[walk]', path)
|
||||
const type = await fs.lstat(path)
|
||||
if (type.isFile()) return {type: 'file', path: path, name: filename || path, tags:[]}
|
||||
if (!type.isDirectory()) return null
|
||||
|
||||
const files = await fs.readdir(path)
|
||||
return {
|
||||
type: 'folder',
|
||||
path: path,
|
||||
name: filename || path,
|
||||
tags: [],
|
||||
children: await Promise.all(files.map(file => walk(`${path}/${file}`, file)))
|
||||
}
|
||||
}
|
||||
|
||||
const ext_static = ['.css', '.js', '.otf', '.png', '.svg', '.txt', '.png', '.jpg', '.webp', 'client', 'server', '.pdf', '.ttf', '.xml', '.properties']
|
||||
const ext_md = ['.md', '.markdown']
|
||||
const ext_pug = ['.pug', '.jade']
|
||||
|
||||
const suffix = file => ext => file.substring(file.length - ext.length) == ext ? ext : null
|
||||
const suffixl = (...l) => file => l.find(suffix(file))
|
||||
const is_static = suffixl(...ext_static)
|
||||
const is_md = suffixl(...ext_md)
|
||||
const is_pug = suffixl(...ext_pug)
|
||||
const is_templated = f => is_md(f) /* || is_rst(f) */
|
||||
const is_document = f => is_templated(f) || is_pug(f)
|
||||
|
||||
const prefix = file => ext => file.substring(0, ext.length) == ext ? ext : null
|
||||
const prefixl = (...l) => file => l.find(prefix(file))
|
||||
|
||||
const rm_prefix = (...l) => file => file.substring(prefixl(...l)(file).length)
|
||||
const rm_suffix = (...l) => file => file.substring(0, file.length - suffixl(...l)(file).length)
|
||||
|
||||
const propagate_md_layout = (tree, markdown_template) => {
|
||||
if (tree.type == 'file' && is_templated(tree.name)) {
|
||||
tree.template = markdown_template
|
||||
log('[propagate_md_layout]', tree ? tree.path : null, markdown_template ? markdown_template.path : null)
|
||||
} else if (tree.type == 'folder') {
|
||||
const find_md_tpl = tree.children.filter(c => c.type == 'file' && c.name == '_markdown.pug')
|
||||
const new_md_tpl = find_md_tpl.length > 0 ? find_md_tpl[0] : markdown_template
|
||||
tree.children.forEach(c => propagate_md_layout(c, new_md_tpl))
|
||||
}
|
||||
return tree
|
||||
}
|
||||
|
||||
const elagate = tree => {
|
||||
if (tree.type != 'folder') return tree
|
||||
|
||||
const lh = e => log('[elagate]', e.path) && false
|
||||
tree.children = tree.children.filter(e => !(e.name[0] == '_') || lh(e))
|
||||
tree.children.forEach(elagate)
|
||||
return tree
|
||||
}
|
||||
|
||||
const tag_document = tree => {
|
||||
if (tree.type == 'file' && is_document(tree.name) && tree.name[0] != '@') {
|
||||
tree.tags.push('document_leaf', 'document')
|
||||
log('[tag_document]', tree.path, 'document_leaf')
|
||||
} else if (tree.type == 'folder') {
|
||||
tree.children.forEach(tag_document)
|
||||
if(tree.children.some(c => c.tags.includes('document'))) {
|
||||
tree.tags.push('document_branch', 'document')
|
||||
log('[tag_document]', tree.path, 'document_branch')
|
||||
}
|
||||
}
|
||||
return tree
|
||||
}
|
||||
|
||||
const reference_index = indexes => tree => {
|
||||
if (tree.type != 'folder') return tree;
|
||||
|
||||
const index = tree.children.find(e => indexes.includes(e.name))
|
||||
if (index) {
|
||||
tree.index = index
|
||||
tree.tags.push('has_index')
|
||||
log('[reference_index]', tree.path, index.name)
|
||||
index.tags.push('is_index')
|
||||
}
|
||||
tree.children.forEach(reference_index(indexes))
|
||||
|
||||
return tree;
|
||||
}
|
||||
|
||||
const propagate_nice_name = prefix => tree => {
|
||||
const without_prefix = tree.path.substring(prefix.length)
|
||||
const splitted = without_prefix.split('/').filter(v => v.length > 0)
|
||||
if (splitted.length > 0) {
|
||||
tree.nice_path = splitted.slice(0, -1)
|
||||
tree.nice_name = splitted[splitted.length - 1].split('.')[0]
|
||||
tree.url = tree.type == 'folder' ? without_prefix + '/' : without_prefix
|
||||
log('[propagate_nice_name]', [...tree.nice_path, tree.nice_name].join('|'))
|
||||
}
|
||||
|
||||
if (tree.type == 'folder') tree.children.forEach(propagate_nice_name(prefix))
|
||||
return tree
|
||||
}
|
||||
|
||||
const prepare_copy = (old_prefix, new_prefix, exts) => tree => {
|
||||
if (tree.type == 'file' && is_static(tree.name)) {
|
||||
tree.generate = {
|
||||
cmd: 'copy',
|
||||
src: tree.path,
|
||||
out: new_prefix + rm_prefix(old_prefix)(tree.path)
|
||||
}
|
||||
log('[prepare_copy]',tree.generate.src,'->',tree.generate.out)
|
||||
} else if (tree.type == 'folder') {
|
||||
tree.children.forEach(prepare_copy(old_prefix, new_prefix, exts))
|
||||
}
|
||||
return tree
|
||||
}
|
||||
|
||||
const prepare_pug = (old_prefix, new_prefix) => tree => {
|
||||
if (tree.type == 'file' && is_pug(tree.name)) {
|
||||
tree.old_url = tree.url
|
||||
tree.url = rm_prefix(old_prefix)(rm_suffix(...ext_pug)(tree.path)) + '.html'
|
||||
tree.generate = {
|
||||
cmd: 'pug',
|
||||
src: tree.path,
|
||||
out: new_prefix + tree.url
|
||||
}
|
||||
log('[prepare_pug]',tree.generate.src,'->',tree.generate.out)
|
||||
}
|
||||
else if (tree.type == 'folder') {
|
||||
tree.children.forEach(prepare_pug(old_prefix, new_prefix))
|
||||
}
|
||||
|
||||
return tree
|
||||
}
|
||||
|
||||
const prepare_md = (old_prefix, new_prefix) => tree => {
|
||||
if (tree.type == 'file' && is_md(tree.name)) {
|
||||
tree.old_url = tree.url
|
||||
tree.url = rm_prefix(old_prefix)(rm_suffix(...ext_md)(tree.path)) + '.html'
|
||||
tree.generate = {
|
||||
cmd: 'pug',
|
||||
src: tree.template.path,
|
||||
markdown: tree.path,
|
||||
out: new_prefix + tree.url
|
||||
}
|
||||
log('[prepare_md]',tree.generate.markdown,'+',tree.generate.src,'->',tree.generate.out)
|
||||
}
|
||||
else if (tree.type == 'folder') {
|
||||
tree.children.forEach(prepare_md(old_prefix, new_prefix))
|
||||
}
|
||||
|
||||
return tree
|
||||
}
|
||||
|
||||
const prepare_folder = (old_prefix, new_prefix) => tree => {
|
||||
if (tree.type == 'folder') {
|
||||
tree.generate = {
|
||||
cmd: 'mkdir',
|
||||
out: new_prefix + rm_prefix(old_prefix)(tree.path)
|
||||
}
|
||||
log('[prepare_folder]',tree.generate.out)
|
||||
tree.children.forEach(prepare_folder(old_prefix, new_prefix))
|
||||
}
|
||||
|
||||
return tree
|
||||
}
|
||||
|
||||
const do_folder = async tree => {
|
||||
if (!tree.generate || tree.generate.cmd != 'mkdir') return tree
|
||||
await fs.mkdir(tree.generate.out, { recursive: true })
|
||||
log('[do_folder]',tree.generate.out)
|
||||
await Promise.all(tree.children.map(do_folder))
|
||||
return tree
|
||||
}
|
||||
|
||||
const do_copy = async tree => {
|
||||
if (tree.generate && tree.generate.cmd == 'copy') {
|
||||
await fs.copyFile(tree.generate.src, tree.generate.out)
|
||||
log('[do_copy]',tree.generate.out)
|
||||
} else if (tree.type == 'folder')
|
||||
await Promise.all(tree.children.map(do_copy))
|
||||
|
||||
return tree
|
||||
}
|
||||
|
||||
const do_pug = (prt, root) => async tree => {
|
||||
prt = prt || tree
|
||||
root = root || tree
|
||||
if (tree.generate && tree.generate.cmd == 'pug') {
|
||||
const html = pug.renderFile(tree.generate.src, {
|
||||
markdown: tree.generate.markdown ? marked(await fs.readFile(tree.generate.markdown, 'utf-8')) : null,
|
||||
root: root,
|
||||
prt: prt,
|
||||
element: tree
|
||||
})
|
||||
await fs.writeFile(tree.generate.out, html)
|
||||
log('[do_pug]',tree.generate.out)
|
||||
} else if (tree.type == 'folder')
|
||||
await Promise.all(tree.children.map(do_pug(tree,root)))
|
||||
|
||||
return tree
|
||||
}
|
||||
|
||||
const rm_tree = t => {
|
||||
if (t == null) return
|
||||
if (t.type == 'file') {
|
||||
log('[do_clean] file', t.path)
|
||||
return fs.unlink(t.path)
|
||||
}
|
||||
|
||||
return Promise
|
||||
.all(t.children.map(rm_tree))
|
||||
.then(_ => {
|
||||
log('[do_clean] path', t.path)
|
||||
return fs.rmdir(t.path)
|
||||
})
|
||||
}
|
||||
|
||||
const do_clean = path => tree =>
|
||||
walk(path)
|
||||
.catch(_ => null)
|
||||
.then(rm_tree)
|
||||
.then(_ => tree)
|
||||
|
||||
const listen = async t =>
|
||||
process.env.LISTEN &&
|
||||
http.createServer(async (req,res) => {
|
||||
const file = fs.readFile(__dirname + '/static/' + decodeURI(req.url))
|
||||
.catch(_ => fs.readFile(__dirname + '/static/' + decodeURI(req.url) + '/index.html'))
|
||||
|
||||
try {
|
||||
const f = await file
|
||||
res.writeHead(200)
|
||||
res.end(f)
|
||||
} catch (e) {
|
||||
console.error(e)
|
||||
res.writeHead(404)
|
||||
res.end("404 not found")
|
||||
}
|
||||
}).listen(process.env.LISTEN);
|
||||
|
||||
const conf = { src: './src', dest: './static'}
|
||||
walk(conf.src)
|
||||
.then(propagate_md_layout)
|
||||
.then(elagate)
|
||||
.then(tag_document)
|
||||
.then(reference_index(['index.md', 'index.pug']))
|
||||
.then(propagate_nice_name(conf.src))
|
||||
.then(prepare_copy(conf.src, conf.dest))
|
||||
.then(prepare_pug(conf.src, conf.dest))
|
||||
.then(prepare_md(conf.src, conf.dest))
|
||||
.then(prepare_folder(conf.src, conf.dest))
|
||||
//.then(v => {log(v) ; return v})
|
||||
.then(do_clean(conf.dest))
|
||||
.then(do_folder)
|
||||
.then(do_copy)
|
||||
.then(do_pug())
|
||||
.then(listen)
|
||||
.catch(console.error)
|
417
res/calendars.txt
Normal file
|
@ -0,0 +1,417 @@
|
|||
.——————————————————————————————————————.
|
||||
| CALENDRIER OCTOBRE 2022 |
|
||||
|——————————————————————————————————————|
|
||||
| ———— ———— |
|
||||
| | 01 | 02 | |
|
||||
| ———— ———— ———— ———— ———— ———— ———— |
|
||||
| | 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 | 30 | |
|
||||
| ———— ———— ———— ———— ———— ———— ———— |
|
||||
| | 31 | |
|
||||
| ———— |
|
||||
|______________________________________|
|
||||
.——————————————————————————————————————.
|
||||
| CALENDRIER NOVEMBRE 2022 |
|
||||
|——————————————————————————————————————|
|
||||
| ———— ———— ———— ———— ———— ———— |
|
||||
| | 01 | 02 | 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 | 30 | |
|
||||
| ———— ———— ———— |
|
||||
|______________________________________|
|
||||
.——————————————————————————————————————.
|
||||
| CALENDRIER DÉCEMBRE 2022 |
|
||||
|——————————————————————————————————————|
|
||||
| ———— ———— ———— ———— |
|
||||
| | 01 | 02 | 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 | 30 | 31 | |
|
||||
| ———— ———— ———— ———— ———— ———— |
|
||||
|______________________________________|
|
||||
.——————————————————————————————————————.
|
||||
| CALENDRIER JANVIER 2023 |
|
||||
|——————————————————————————————————————|
|
||||
| ———— |
|
||||
| | 01 | |
|
||||
| ———— ———— ———— ———— ———— ———— ———— |
|
||||
| | 02 | 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 | |
|
||||
| ———— ———— ———— ———— ———— ———— ———— |
|
||||
| | 30 | 31 | |
|
||||
| ———— ———— |
|
||||
|______________________________________|
|
||||
.——————————————————————————————————————.
|
||||
| CALENDRIER FÉVRIER 2023 |
|
||||
|——————————————————————————————————————|
|
||||
| ———— ———— ———— ———— ———— |
|
||||
| | 01 | 02 | 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 | |
|
||||
| ———— ———— |
|
||||
|______________________________________|
|
||||
.——————————————————————————————————————.
|
||||
| CALENDRIER MARS 2023 |
|
||||
|——————————————————————————————————————|
|
||||
| ———— ———— ———— ———— ———— |
|
||||
| | 01 | 02 | 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 | 30 | 31 | |
|
||||
| ———— ———— ———— ———— ———— |
|
||||
|______________________________________|
|
||||
.——————————————————————————————————————.
|
||||
| CALENDRIER AVRIL 2023 |
|
||||
|——————————————————————————————————————|
|
||||
| ———— ———— |
|
||||
| | 01 | 02 | |
|
||||
| ———— ———— ———— ———— ———— ———— ———— |
|
||||
| | 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 | 30 | |
|
||||
| ———— ———— ———— ———— ———— ———— ———— |
|
||||
|______________________________________|
|
||||
.——————————————————————————————————————.
|
||||
| CALENDRIER MAI 2023 |
|
||||
|——————————————————————————————————————|
|
||||
| ———— ———— ———— ———— ———— ———— ———— |
|
||||
| | 01 | 02 | 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 | 30 | 31 | |
|
||||
| ———— ———— ———— |
|
||||
|______________________________________|
|
||||
.——————————————————————————————————————.
|
||||
| CALENDRIER JUIN 2023 |
|
||||
|——————————————————————————————————————|
|
||||
| ———— ———— ———— ———— |
|
||||
| | 01 | 02 | 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 | 30 | |
|
||||
| ———— ———— ———— ———— ———— |
|
||||
|______________________________________|
|
||||
.——————————————————————————————————————.
|
||||
| CALENDRIER JUILLET 2023 |
|
||||
|——————————————————————————————————————|
|
||||
| ———— ———— |
|
||||
| | 01 | 02 | |
|
||||
| ———— ———— ———— ———— ———— ———— ———— |
|
||||
| | 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 | 30 | |
|
||||
| ———— ———— ———— ———— ———— ———— ———— |
|
||||
| | 31 | |
|
||||
| ———— |
|
||||
|______________________________________|
|
||||
.——————————————————————————————————————.
|
||||
| CALENDRIER AOÛT 2023 |
|
||||
|——————————————————————————————————————|
|
||||
| ———— ———— ———— ———— ———— ———— |
|
||||
| | 01 | 02 | 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 | 30 | 31 | |
|
||||
| ———— ———— ———— ———— |
|
||||
|______________________________________|
|
||||
.——————————————————————————————————————.
|
||||
| CALENDRIER SEPTEMBRE 2023 |
|
||||
|——————————————————————————————————————|
|
||||
| ———— ———— ———— |
|
||||
| | 01 | 02 | 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 | 30 | |
|
||||
| ———— ———— ———— ———— ———— ———— |
|
||||
|______________________________________|
|
||||
.——————————————————————————————————————.
|
||||
| CALENDRIER OCTOBRE 2023 |
|
||||
|——————————————————————————————————————|
|
||||
| ———— |
|
||||
| | 01 | |
|
||||
| ———— ———— ———— ———— ———— ———— ———— |
|
||||
| | 02 | 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 | |
|
||||
| ———— ———— ———— ———— ———— ———— ———— |
|
||||
| | 30 | 31 | |
|
||||
| ———— ———— |
|
||||
|______________________________________|
|
||||
.——————————————————————————————————————.
|
||||
| CALENDRIER NOVEMBRE 2023 |
|
||||
|——————————————————————————————————————|
|
||||
| ———— ———— ———— ———— ———— |
|
||||
| | 01 | 02 | 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 | 30 | |
|
||||
| ———— ———— ———— ———— |
|
||||
|______________________________________|
|
||||
.——————————————————————————————————————.
|
||||
| CALENDRIER DÉCEMBRE 2023 |
|
||||
|——————————————————————————————————————|
|
||||
| ———— ———— ———— |
|
||||
| | 01 | 02 | 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 | 30 | 31 | |
|
||||
| ———— ———— ———— ———— ———— ———— ———— |
|
||||
|______________________________________|
|
||||
.——————————————————————————————————————.
|
||||
| CALENDRIER JANVIER 2024 |
|
||||
|——————————————————————————————————————|
|
||||
| ———— ———— ———— ———— ———— ———— ———— |
|
||||
| | 01 | 02 | 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 | 30 | 31 | |
|
||||
| ———— ———— ———— |
|
||||
|______________________________________|
|
||||
.——————————————————————————————————————.
|
||||
| CALENDRIER FÉVRIER 2024 |
|
||||
|——————————————————————————————————————|
|
||||
| ———— ———— ———— ———— |
|
||||
| | 01 | 02 | 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 | |
|
||||
| ———— ———— ———— ———— |
|
||||
|______________________________________|
|
||||
.——————————————————————————————————————.
|
||||
| CALENDRIER MARS 2024 |
|
||||
|——————————————————————————————————————|
|
||||
| ———— ———— ———— |
|
||||
| | 01 | 02 | 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 | 30 | 31 | |
|
||||
| ———— ———— ———— ———— ———— ———— ———— |
|
||||
|______________________________________|
|
||||
.——————————————————————————————————————.
|
||||
| CALENDRIER AVRIL 2024 |
|
||||
|——————————————————————————————————————|
|
||||
| ———— ———— ———— ———— ———— ———— ———— |
|
||||
| | 01 | 02 | 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 | 30 | |
|
||||
| ———— ———— |
|
||||
|______________________________________|
|
||||
.——————————————————————————————————————.
|
||||
| CALENDRIER MAI 2024 |
|
||||
|——————————————————————————————————————|
|
||||
| ———— ———— ———— ———— ———— |
|
||||
| | 01 | 02 | 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 | 30 | 31 | |
|
||||
| ———— ———— ———— ———— ———— |
|
||||
|______________________________________|
|
||||
.——————————————————————————————————————.
|
||||
| CALENDRIER JUIN 2024 |
|
||||
|——————————————————————————————————————|
|
||||
| ———— ———— |
|
||||
| | 01 | 02 | |
|
||||
| ———— ———— ———— ———— ———— ———— ———— |
|
||||
| | 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 | 30 | |
|
||||
| ———— ———— ———— ———— ———— ———— ———— |
|
||||
|______________________________________|
|
||||
.——————————————————————————————————————.
|
||||
| CALENDRIER JUILLET 2024 |
|
||||
|——————————————————————————————————————|
|
||||
| ———— ———— ———— ———— ———— ———— ———— |
|
||||
| | 01 | 02 | 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 | 30 | 31 | |
|
||||
| ———— ———— ———— |
|
||||
|______________________________________|
|
||||
.——————————————————————————————————————.
|
||||
| CALENDRIER AOÛT 2024 |
|
||||
|——————————————————————————————————————|
|
||||
| ———— ———— ———— ———— |
|
||||
| | 01 | 02 | 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 | 30 | 31 | |
|
||||
| ———— ———— ———— ———— ———— ———— |
|
||||
|______________________________________|
|
||||
.——————————————————————————————————————.
|
||||
| CALENDRIER SEPTEMBRE 2024 |
|
||||
|——————————————————————————————————————|
|
||||
| ———— |
|
||||
| | 01 | |
|
||||
| ———— ———— ———— ———— ———— ———— ———— |
|
||||
| | 02 | 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 | |
|
||||
| ———— ———— ———— ———— ———— ———— ———— |
|
||||
| | 30 | |
|
||||
| ———— |
|
||||
|______________________________________|
|
||||
.——————————————————————————————————————.
|
||||
| CALENDRIER OCTOBRE 2024 |
|
||||
|——————————————————————————————————————|
|
||||
| ———— ———— ———— ———— ———— ———— |
|
||||
| | 01 | 02 | 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 | 30 | 31 | |
|
||||
| ———— ———— ———— ———— |
|
||||
|______________________________________|
|
||||
.——————————————————————————————————————.
|
||||
| CALENDRIER NOVEMBRE 2024 |
|
||||
|——————————————————————————————————————|
|
||||
| ———— ———— ———— |
|
||||
| | 01 | 02 | 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 | 30 | |
|
||||
| ———— ———— ———— ———— ———— ———— |
|
||||
|______________________________________|
|
||||
.——————————————————————————————————————.
|
||||
| CALENDRIER DÉCEMBRE 2024 |
|
||||
|——————————————————————————————————————|
|
||||
| ———— |
|
||||
| | 01 | |
|
||||
| ———— ———— ———— ———— ———— ———— ———— |
|
||||
| | 02 | 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 | |
|
||||
| ———— ———— ———— ———— ———— ———— ———— |
|
||||
| | 30 | 31 | |
|
||||
| ———— ———— |
|
||||
|______________________________________|
|
|
@ -1 +0,0 @@
|
|||
{ "m.server": "deuxfleurs.fr:443" }
|
13
src/@404.pug
|
@ -1,13 +0,0 @@
|
|||
extends _layout.pug
|
||||
|
||||
prepend root
|
||||
- title = "deuxfleurs"
|
||||
|
||||
block content
|
||||
section
|
||||
h1 404 - Page non trouvée
|
||||
|
||||
p La page que vous cherchez n'existe pas sur ce site web.
|
||||
|
||||
p Si vous pensez que c'est une erreur, les informations pour nous contacter sont disponibles sur notre page d'accueil.
|
||||
|
144
src/CGU.pug
|
@ -1,144 +0,0 @@
|
|||
extends _layout.pug
|
||||
|
||||
prepend root
|
||||
- title = "CGU"
|
||||
|
||||
block content
|
||||
section
|
||||
h1 Conditions Générales d'Utilisation
|
||||
|
||||
p 10/03/2022
|
||||
|
||||
p En utilisant les services de Deuxfleurs, vous acceptez d’être lié par les conditions suivantes.
|
||||
|
||||
h2 Évolution des conditions générales d'utilisation
|
||||
|
||||
p Deuxfleurs se réserve le droit de mettre à jour et modifier ces conditions. Dans ce cas, Deuxfleurs informe les personnes concernées par mail si elle le peut ou par un affichage sur le site.
|
||||
|
||||
h2 Accès aux services
|
||||
|
||||
p
|
||||
| Certains services sont en accès libre, d'autre requièrent un compte. Vous pouvez obtenir un compte par cooptation d'un membre existant ou en faisant une demande directement par email à l'association.
|
||||
| Certains services sont soumis à l'approbation préalable de Deuxfleurs selon les ressources disponibles. La liste des services et leurs conditions d'accès peut-être obtenue en contactant l'association.
|
||||
|
||||
h2 Fonctionnement
|
||||
|
||||
h3 Délais de mise en service
|
||||
|
||||
p Deuxfleurs propose ses services grâce à des bénévoles, de ce fait Deuxfleurs ne s’engage sur aucun délai de mise en service. Nous essayons toutefois de faire de notre mieux pour les fournir dans les 7 jours.
|
||||
|
||||
h3 Transmission sécurisée d’identifiants
|
||||
|
||||
p
|
||||
| Deuxfleurs ne vous demandera jamais de communiquer vos mots ou phrases de passe.
|
||||
| Lorsque Deuxfleurs doit vous transmettre un identifiant, Deuxfleurs le fera via email ou en physique.
|
||||
|
||||
h3 Intervention en cas de panne
|
||||
|
||||
p En cas de panne constatée et si aucun message n’atteste sur la page de statut que Deuxfleurs est en train de corriger le dysfonctionnement, vous devez faire un signalement via Matrix.
|
||||
|
||||
p Deuxfleurs propose l’ensemble de ses services grâce à des bénévoles qui feront ce qu’ils et elles peuvent pour résoudre les problèmes techniques qui pourraient subvenir.
|
||||
|
||||
|
||||
h3 Intégrité des données
|
||||
|
||||
p Deuxfleurs réalise des sauvegardes quotidiennes afin d’éviter des pertes de données. Les sauvegardes sont conservées selon cette politique suivante : 1/jour jusqu’à 1 mois, 1/semaine jusqu’à 3 mois, 1/mois jusqu’à 1 an. Les sauvegardes sont stockées de manière chiffrée avec un mot de passe par l'association à Suresnes.
|
||||
|
||||
p Deuxfleurs ne peut être tenu responsable de l’intégrité des données et des conséquences liées à une perte de données.
|
||||
|
||||
p Deuxfleurs recommande aux usager·es d’avoir une sauvegarde locale afin d’assurer l’intégrité de leurs données.
|
||||
|
||||
h3 Responsabilité de Deuxfleurs
|
||||
|
||||
p Deuxfleurs est assujetti à une obligation de moyens. En cas de défaillance, Deuxfleurs ne peut être tenu pour responsable des dommages indirects tels que pertes d’exploitation, préjudices commerciaux, perte de Clientèle, de chiffre d’affaires, de bénéfices ou d’économies prévus, ou de tout autre préjudice indirect.
|
||||
|
||||
h3 Mésusage des services
|
||||
|
||||
p Vous devez respecter les lois et réglementations en vigueur lors de l’usage des services proposés que ce soit en matière de respect de la vie privée, d’envoi de mails en grande quantité, de propriété intellectuelle, de propos discriminatoires, d’appel à la haine, de harcèlement, d’atteinte aux libertés fondamentales de personnes, etc.
|
||||
|
||||
p En cas d’usage prohibé, Deuxfleurs peut se trouver dans l’obligation de déclencher la suspension totale ou partielle du service, le retrait de contenu, ou toute autre mesure que les lois et réglementations lui imposent. Vous devez respecter les autres utilisateurs en faisant preuve de civisme et de politesse. Deuxfleurs se réserve le droit de supprimer tout contenu paraissant non pertinent ou contrevenant à ces principes, selon son seul jugement.
|
||||
|
||||
p Par ailleurs, si un ou une utilisatrice abuse du service, par exemple en monopolisant des ressources machines partagées, son contenu ou son accès pourra être supprimé, si nécessaire sans avertissement ni négociation. Deuxfleurs reste seul juge de cette notion « d’abus » dans le but de fournir le meilleur service possible à l’ensemble des usagers et usagères.
|
||||
|
||||
h3 Devenir des services
|
||||
|
||||
p Deuxfleurs peut par ailleurs choisir (de résilier des abonnements ou) d’arrêter des services si Deuxfleurs estime ne plus être en mesure de fournir lesdits services. Si Deuxfleurs en a la possibilité, elle fera de son mieux pour laisser un délai suffisant pour permettre à tout le monde de migrer sereinement.
|
||||
|
||||
h3 Support et conseil
|
||||
|
||||
p Vous pouvez nous signaler des souhaits sur la création de futur service, mais sachez que nous ne pourrons pas créer de nouveaux services en moins de 6 mois. Deuxfleurs pourra toutefois vous rediriger vers des chatons à même de répondre à vos demandes.
|
||||
|
||||
p En dehors de dysfonctionnement technique, Deuxfleurs propose également de vous aider dans la réalisation de votre projet avec les services de Deuxfleurs selon l'envie et le temps disponible de ses membres. Deuxfleurs se réserve le droit de facturer le temps de support et de conseil pour des projets importants après avoir prévenu les utilisateurs en amont.
|
||||
|
||||
h3 Résiliation d’un compte
|
||||
|
||||
p Si vous souhaitez résilier un compte, vous devez le signaler à Deuxfleurs.
|
||||
|
||||
h2 Nos engagements
|
||||
|
||||
p
|
||||
| Deuxfleurs n’exploitera vos données personnelles que dans le cadre de ces 5 finalités:
|
||||
ul
|
||||
li fournir le service pour lesquels vous avez transmis vos données
|
||||
li produire d‘éventuelles statistiques anonymisées et agrégées
|
||||
li vous prévenir d’un changement important sur le service (panne, notification d’intrusion et de vol de données, changement d’interface, date d’arrêt du service...)
|
||||
li obtenir votre avis sur les services et l’action de l’association
|
||||
li vous inviter à participer à un évènement de Deuxfleurs
|
||||
|
||||
p Deuxfleurs ne transmettra ni ne revendra vos données personnelles (votre vie privée nous tient - vraiment - à cœur). Votre contenu vous appartient tout autant, toutefois, nous vous encourageons à le publier sous licence libre si c’est pertinent.
|
||||
|
||||
p
|
||||
| Une modification du paragraphe précédent, contrairement au reste de la présente charte, ne peut se faire simplement par une simple notification. Si une telle modification devait survenir, elle :
|
||||
ul
|
||||
li Ne serait pas rétroactive
|
||||
li Demandera un accord explicite de votre part pour continuer à utiliser les services fournis par Deuxfleurs
|
||||
li Provoquera une révocation préalable à la modification auprès de tous les soutiens de Deuxfleurs ayant à cœur les problématiques de respect de la vie privée.
|
||||
|
||||
|
||||
h3 Charte CHATONS
|
||||
|
||||
p Deuxfleurs s’engage à respecter la charte du Collectif des Hébergeurs Alternatifs, Transparents, Ouverts, Neutres et Solidaires dans le cadre de son activité d’hébergeur et de fourniture de services en ligne
|
||||
|
||||
p Deuxfleurs est candidat à l’intégration au sein de ce collectif.
|
||||
|
||||
p Plus d’information sur la charte C.H.A.T.O.N.S. :
|
||||
a(href="https://chatons.org/fr/charte") chatons.org/fr/charte
|
||||
|
||||
|
||||
h3 Localisation des données
|
||||
|
||||
p
|
||||
| Vos données sont localisées en France et en Belgique, sur les serveurs de nos membres. Un détail complet de l'infrastructure et de l'emplacement des données par service est disponible sur notre page
|
||||
a(href="https://wiki.deuxfleurs.fr/Technique/Infra") Infrastructure
|
||||
| .
|
||||
|
||||
h3 Devenir des données
|
||||
|
||||
p Une fois le compte clôturé, Deuxfleurs peut procéder à la suppression des données.
|
||||
|
||||
p Certains services en libre accès permettent de configurer la péremption des données, d’autres les conservent de façon permanentes, mais vous pouvez demander leur retrait si vous pouvez prouver que vous en êtes l’auteur⋅ice.
|
||||
|
||||
h3 Exercice de vos droits
|
||||
|
||||
p
|
||||
| Conformément à l’article 34 de la loi « Informatique et Libertés », vous pouvez exercer les droits suivant en envoyant un mail à ca
|
||||
img.simple(height="15", src="img/arobase.png")
|
||||
| deuxfleurs.fr :
|
||||
ul
|
||||
li droits d’accès, de rectification, d’effacement et d’opposition
|
||||
li droit à la limitation du traitement
|
||||
li droit à la portabilité des données
|
||||
li droit de ne pas faire l’objet d’une décision individuelle automatisée
|
||||
|
||||
h3 RGPD
|
||||
|
||||
p Vous et Deuxfleurs s’engagent à respecter la réglementation en vigueur applicable au traitement de données à caractère personnel et, en particulier, le règlement (UE) 2016/679 du Parlement européen et du Conseil du 27 avril 2016 applicable à compter du 25 mai 2018, dite RGPD.
|
||||
|
||||
h2 Litige et juridiction compétente
|
||||
|
||||
p Le droit applicable aux présentes est le droit français. En cas de différent, les parties recherchent une solution amiable. Si la démarche échoue, le litige sera tranché par le Tribunal de Grande Instance de Rennes.
|
||||
|
||||
p Le fait que l’usager ou Deuxfleurs ne se prévale pas à un moment donné de l’une des présentes conditions générales et/ou tolère un manquement par l’autre partie ne peut être interprété comme valant renonciation par l’usager ou Deuxfleurs à se prévaloir ultérieurement de ces conditions.
|
||||
|
||||
p La nullité d’une des clauses de ces conditions en application d’une loi, d’une réglementation ou d’une décision de justice n’implique pas la nullité de l’ensemble des autres clauses. Par ailleurs l’esprit général de la clause sera à conserver en accord avec le droit applicable.
|
||||
|
|
@ -1,130 +0,0 @@
|
|||
extends _layout.pug
|
||||
|
||||
prepend root
|
||||
- title = "Gestion des risques"
|
||||
|
||||
block content
|
||||
section
|
||||
h1 Gestion des risques
|
||||
|
||||
p
|
||||
| Un risque se définit par la combinaison d'un danger, c'est à dire un évènement redouté, et sa probabilité d'occurence.
|
||||
| La gestion des risques consiste à minimiser les risques en les évaluant et en mettant en place des solutions pour réduire leur impact.
|
||||
|
||||
h2 🧰 Risques matériels
|
||||
|
||||
h3 Panne de composants informatiques
|
||||
|
||||
p
|
||||
b Définition du risque
|
||||
| : Un serveur est composé d'un ensemble de pièces avec une durée de vie limitée. La panne d'une de ces pièces cause une interruption de service et possiblement une perte de données (comme dans le cas d'un disque dur par exemple). La probabilité de ces pannes est importante car certains composants ont une durée de vie limité, comme les disques durs, et de plus nous utilisons du matériel reconditionné qui a donc déjà été utilisé.
|
||||
|
||||
p
|
||||
b Mesure mise en place
|
||||
| : Nous avons à disposition des pièces de rechange pour pouvoir réparer rapidement nos serveurs. De plus, nous avons en permanence plusieurs machines en production de sorte que lorsque l'une d'elle tombe en panne, les services qu'elle gérait sont automatiquement basculés sur les autres machines fonctionnelles. Les données sont répliquées sur 3 disques durs différents, de sorte que si un disque dur tombe en panne, cette dernière est toujours disponible sur 2 autres disques.
|
||||
|
||||
h3 Bug logiciel
|
||||
|
||||
p
|
||||
b Définition du risque
|
||||
| : Un bug logiciel peut rendre un service indisponible voire impliquer une perte de données. Cette indisponibilité et cette perte de donnée, contrairement à une panne matériel, peut se propager à l'ensemble de nos serveurs.
|
||||
|
||||
p
|
||||
b Mesure mise en place
|
||||
| : Les données, en plus d'être répliquées automatiquement, sont périodiquement sauvegardées via un logiciel indépendant sur une période d'au moins 2 mois sur un site distant (Suresnes), de sorte que le logiciel qui fournisse le service n'ait pas accès aux données de sauvegardes et ne puisse donc pas les effacer. Les services quant à eux sont définis déclarativement, dans chaque modification est archivée, de sorte qu'il est possible de revenir sur une version antérieure du service qui soit stable.
|
||||
|
||||
h3 Panne du réseau électrique ou internet
|
||||
|
||||
p
|
||||
b Définition du risque
|
||||
| : Nous faisons appel à des prestataires externe pour l'électricité (eg. EDF) et la connexion Internet (eg. Free). Lors de travaux dans la rue, de tension sur le réseau (eg. froid ou confinement), ou simplement d'erreur de gestion, ces réseaux peuvent être coupés localement ou au niveau national. En résulte une indisponibilité des services pendant la coupure.
|
||||
|
||||
p
|
||||
b Mesure mise en place
|
||||
| : Notre infrastructure est répartie sur des zones éloignées géographiquement (aujourd'hui Rennes et Orsay), de sorte qu'une panne locale ne nécessitera que de migrer les services d'une zone à l'autre. Pour le cas d'une panne au niveau national, nous acceptons ce risque : il est très faible et, la plupart du temps, le service est rétabli en quelques heures.
|
||||
|
||||
h3 Panne des autres prestataires et tiers-parties
|
||||
|
||||
p
|
||||
b Définition du risque
|
||||
| : Deuxfleurs fait appel à un certains nombre de prestataires et tiers parties pour fournir ses services : bureau d'enregistrement DNS (Gandi), Hébergeur DNS (Gandi), certificats X.509 (Let's Encrypt), système d'exploitation (NixOS, Debian), logiciels (Docker Hub, Github, etc.). La panne ou le blocage par une de ces tiers-parties impacteraient les services de Deuxfleurs.
|
||||
|
||||
p
|
||||
b Mesure mise en place
|
||||
| : Nous essayons de limiter le nombre de prestataires que nous utilisons et évitons de verrouiller fortement nos choix technologiques vis à vis d'un fournisseur particulier.
|
||||
| En dehors de ces points, nous acceptons ces risques.
|
||||
|
||||
h2 😵 Risques humains
|
||||
|
||||
h3 Erreur d'administration
|
||||
|
||||
p
|
||||
b Définition du risque
|
||||
| : Une erreur d'administration des services peut aboutir à une interruption de services et à une perte de données sur l'ensemble de nos serveurs. Elle peut également générer beaucoup de stress pour la personne en charge de l'administration.
|
||||
|
||||
p
|
||||
b Mesure mise en place
|
||||
| : Les données, en plus d'être répliquées automatiquement, sont périodiquement sauvegardées via un logiciel indépendant sur une période d'au moins 2 mois sur un site distant (Suresnes), de sorte que le logiciel qui fournisse le service n'ait pas accès aux données de sauvegardes et ne puisse donc pas les effacer. Les services quant à eux sont définis déclarativement, dans chaque modification est archivée, de sorte qu'il est possible de revenir sur une version antérieure du service qui soit stable. En cas d'erreur, la personne en charge de l'administration doit demander un accompagnement ou un relai pour limiter les risques d'aggravement de la situation et ne pas avoir à supporter cette situation stressante seule.
|
||||
|
||||
h3 Absence d'astreinte
|
||||
p
|
||||
b Définition du risque
|
||||
| : Que ce soit dans les datacenters au niveau matériel, ou dans les services informatiques, au niveau logiciel, de nombreuses organisations mettent en place des astreintes.
|
||||
| Autrement dit, une ou plusieurs personnes identifiées doivent se rendre disponible sur des périodes données pour pouvoir intervenenir rapidement sur les serveurs.
|
||||
| Dans le cas de Deuxfleurs, une astreinte empêcherait une personne de quitter son domicile pour des vacances ou même rendre visite à sa famille !
|
||||
|
||||
p
|
||||
b Mesure mise en place
|
||||
| : Nous faisons en sorte d'avoir des serveurs chez des membres différents et d'avoir plusieurs personnes en mesure de réaliser une même opération de maintenance.
|
||||
| Si un problème devait arriver pendant l'absence de la personne concernée, un autre membre devrait pouvoir prendre le relai dans les heures ou les jours qui viennent, par exemple en migrant les services chez lui ou en le réparant à distance.
|
||||
|
||||
|
||||
h3 Perte d'expertise
|
||||
p
|
||||
b Définition du risque
|
||||
| : L'infrastructure que nous avons déployée demande des connaissances avancées en informatique détenues par une fraction des membres de l'association. Si cette fraction venait à quitter l'association, la maintenance de ses services pourrait ne plus être réalisée par les membres restants, mettant en péril sa pérennité.
|
||||
|
||||
p
|
||||
b Mesure mise en place
|
||||
| : Nous essayons d'avoir toujours au moins deux personnes en mesure de réaliser une tâche. Nous essayons de documenter et standardiser notre infrastructure.
|
||||
|
||||
h3 Risques juridiques
|
||||
p
|
||||
b Définition du risque
|
||||
| : Deuxfleurs pourrait enfreindre la loi et voir sa pérennité engagée en cas de procès.
|
||||
|
||||
p
|
||||
b Mesure mise en place
|
||||
| : Nous faisons une veille juridique concernant les hébergeurs. Nous mitigeons aussi ce risque via la co-optation qui permet de contrôler notre croissance et les personnes qui nous rejoignent.
|
||||
|
||||
h2 👿 Malveillance
|
||||
|
||||
h3 Attaque informatique
|
||||
p
|
||||
b Définition du risque
|
||||
| : Une attaque informatique, venant d'un·e administrateur·ice ou d'une personne extérieure, peut aboutir à l'indisponibilité de nos services, à une perte de données, mais aussi à la fuite de ces dernières.
|
||||
|
||||
p
|
||||
b Mesure mise en place
|
||||
| : Pour se protéger d'un·e administrateur·ice malveillant·e, le groupe d'administrateur·ices existant ne recrute que de nouvelles personnes sur cooptation et après avoir jugé cette personne de confiance. Nous prévoyions également de chiffrer de plus en plus de données côté client, de sorte qu'une personne en charge de l'administration ne soit pas en mesure de lire le contenu stocké sur les serveurs. Pour se protéger d'une personne extérieure, nous maintenons notre système à jour et avons entamé une démarche de défense en profondeur.
|
||||
|
||||
|
||||
h3 Vol du matériel
|
||||
|
||||
p
|
||||
b Définition du risque
|
||||
| : Une personne entrant par effraction chez un de nos membres pourrait voler les ordinateurs. Cet évènement peut impacter la disponibilité de nos services, l'intégrité de nos données, mais aussi la confidentialité de ces dernières.
|
||||
|
||||
p
|
||||
b Mesure mise en place
|
||||
| : Nous acceptons ce risque pour le moment. Le chiffrement côté client, pour les services le supportant, permet de protéger la confidentialité des données. Nous prévoyions à terme de chiffrer les disques durs à froid en plus.
|
||||
|
||||
|
||||
h3 Abus des services
|
||||
p
|
||||
b Définition du risque
|
||||
| : Une personne ayant des accès au service, où se les aillant fait voler, peut opérer un déni de service sur notre infrastructure, ou alors nuire à la réputation de notre service sur un réseau fédéré (eg. spam via email). Cela entraine une indisponibilité des services et/ou une dégradation plus ou moins durable de la qualité de ces derniers.
|
||||
|
||||
p
|
||||
b Mesure mise en place
|
||||
| : Nous mitigeons actuellement ce risque via la cooptation, où nous faisons confiance aux nouveaux membres et les invitons à bien gérer leurs identifiants.
|
|
@ -1,96 +0,0 @@
|
|||
extends _layout.pug
|
||||
|
||||
prepend root
|
||||
- title = "Mentions légales"
|
||||
|
||||
block content
|
||||
section
|
||||
h1 Mentions légales
|
||||
|
||||
h2 Éditeur et hébergeur
|
||||
|
||||
|
||||
p
|
||||
b Deuxfleurs
|
||||
br
|
||||
| Deuxfleurs est l'éditeur et l'hébergeur de l'ensemble de ses services et contenus à l'exception de sa
|
||||
a(href="https://git.deuxfleurs.fr")  forge git
|
||||
br
|
||||
| Association loi 1901 déclarée en préfecture d'Ille-et-Vilaine le 29 janvier 2020.
|
||||
|
||||
p
|
||||
| Numéro RNA : W353020804
|
||||
br
|
||||
| Numéro SIRET : 89961256800019
|
||||
|
||||
p
|
||||
| Siège social : Association Deuxfleurs
|
||||
br
|
||||
| 10A Allée de Lanvaux
|
||||
br
|
||||
| 35700 RENNES
|
||||
br
|
||||
| FRANCE
|
||||
|
||||
p
|
||||
b OVH
|
||||
br
|
||||
| OVH est uniquement en charge de l'hébergement de la
|
||||
a(href="https://git.deuxfleurs.fr")  forge git.
|
||||
br
|
||||
| SASU Société par actions simplifiée à associé unique.
|
||||
|
||||
p Numéro SIRET : 42476141900045
|
||||
|
||||
p
|
||||
| Siège social : OVH
|
||||
br
|
||||
| 2 RUE KELLERMANN
|
||||
br
|
||||
| 59100 ROUBAIX
|
||||
br
|
||||
| FRANCE
|
||||
|
||||
h3 Direction de la publication
|
||||
|
||||
p
|
||||
| Quentin Dufour
|
||||
br
|
||||
| Adrien Luxey
|
||||
|
||||
h2 Informatique et libertés
|
||||
|
||||
h3 Informations personnelles collectées
|
||||
|
||||
p En France, les données personnelles sont notamment protégées par la loi n° 78-17 du 6 janvier 1978, la loi n° 2004-801 du 6 août 2004, l’article L. 226-13 du Code pénal et la Directive Européenne du 24 octobre 1995.
|
||||
|
||||
p En tout état de cause Deuxfleurs ne collecte des informations personnelles relatives à l’utilisateur (nom, adresse électronique, coordonnées téléphoniques) que pour le besoin des services proposés par les sites du réseau Deuxfleurs. L’utilisateur fournit ces informations en toute connaissance de cause, notamment lorsqu’il procède par lui-même à leur saisie. Il est alors précisé à l’utilisateur des sites du réseau Deuxfleurs le caractère obligatoire ou non des informations qu’il serait amené à fournir.
|
||||
|
||||
h3 Rectification des informations nominatives collectées
|
||||
|
||||
p
|
||||
| Conformément aux dispositions de l’article 34 de la loi n° 48-87 du 6 janvier 1978, l’utilisateur dispose d’un droit de modification des données nominatives collectées le concernant. Pour ce faire, l’utilisateur envoie à Deuxfleurs :
|
||||
ul
|
||||
li un courrier électronique à ca (arobase) deuxfleurs.fr
|
||||
li un courrier à l’adresse du siège de l’association (indiquée ci-dessus) en indiquant son nom ou sa raison sociale, ses coordonnées physiques et/ou électroniques, ainsi que le cas échéant la référence dont il disposerait en tant qu’utilisateur du site Deuxfleurs.
|
||||
|
||||
p La modification interviendra dans des délais raisonnables à compter de la réception de la demande de l’utilisateur.
|
||||
|
||||
|
||||
h2 Limitation de responsabilité
|
||||
|
||||
p Ce site comporte des informations mises à disposition par des communautés ou sociétés externes ou des liens hypertextes vers d’autres sites qui n’ont pas été développés par Deuxfleurs. Le contenu mis à disposition sur le site est fourni à titre informatif. L’existence d’un lien de ce site vers un autre site ne constitue pas une validation de ce site ou de son contenu. Il appartient à l’internaute d’utiliser ces informations avec discernement et esprit critique. La responsabilité de Deuxfleurs ne saurait être engagée du fait des informations, opinions et recommandations formulées par des tiers.
|
||||
|
||||
p Deuxfleurs ne pourra être tenue responsable des dommages directs et indirects causés au matériel de l’utilisateur, lors de l’accès au site, et résultant soit de l’utilisation d’un matériel ne répondant pas aux spécifications techniques requises, soit de l’apparition d’un bug ou d’une incompatibilité.
|
||||
|
||||
p Deuxfleurs ne pourra également être tenue responsable des dommages indirects (tels par exemple qu’une perte de marché ou perte d’une chance) consécutifs à l’utilisation du site.
|
||||
|
||||
p Des espaces interactifs (comme la solution de messagerie instantanée Matrix) sont à la disposition des utilisateurs sur le site Deuxfleurs. Deuxfleurs se réserve le droit de supprimer, sans mise en demeure préalable, tout contenu déposé dans cet espace qui contreviendrait à la législation applicable en France, en particulier aux dispositions relatives à la protection des données. Le cas échéant, Deuxfleurs se réserve également la possibilité de mettre en cause la responsabilité civile et/ou pénale de l’utilisateur, notamment en cas de message à caractère raciste, injurieux, diffamant, ou pornographique, quel que soit le support utilisé (texte, photographie…).
|
||||
|
||||
h2 Limitations contractuelles sur les données techniques
|
||||
|
||||
p Deuxfleurs ne pourra être tenue responsable de dommages matériels liés à l’utilisation du site.
|
||||
|
||||
h2 Propriété intellectuelle
|
||||
|
||||
p Les contenus sont publiés sous la responsabilité des utilisateurs.
|
|
@ -1,41 +0,0 @@
|
|||
extends _layout.pug
|
||||
|
||||
prepend root
|
||||
- title = "Sources"
|
||||
|
||||
block content
|
||||
section
|
||||
h1 Accéder aux sources des logiciels utilisés
|
||||
|
||||
p Deuxfleurs utilise exclusivement des logiciels libres dans le cadre de son activité. Vous pouvez retrouver ici la liste des sources des logiciels utilisés.
|
||||
:markdown-it
|
||||
- [Debian](https://packages.debian.org/)
|
||||
- [NixOS](https://github.com/NixOS)
|
||||
- [Nomad](https://github.com/hashicorp/nomad)
|
||||
- [Consul](https://github.com/hashicorp/consul/)
|
||||
- [Garage](https://git.deuxfleurs.fr/Deuxfleurs/garage)
|
||||
- [Tricot](https://git.deuxfleurs.fr/Deuxfleurs/tricot)
|
||||
- [Bottin](https://git.deuxfleurs.fr/Deuxfleurs/bottin/)
|
||||
- [Guichet](https://git.deuxfleurs.fr/Deuxfleurs/guichet/)
|
||||
- [Diplonat](https://git.deuxfleurs.fr/Deuxfleurs/diplonat/)
|
||||
- [Stolon](https://github.com/sorintlab/stolon)
|
||||
- [Docker](https://github.com/moby/moby)
|
||||
- [Ansible](https://github.com/ansible/ansible)
|
||||
- [Drone](https://github.com/harness/drone)
|
||||
- [Restic](https://github.com/restic/restic)
|
||||
- [Cryptpad](https://github.com/xwiki-labs/cryptpad)
|
||||
- [Sogo](https://github.com/inverse-inc/sogo)
|
||||
- [alps](git.deuxfleurs.fr/Deuxfleurs/alps)
|
||||
- [Synapse](https://github.com/matrix-org/synapse)
|
||||
- [Element](https://github.com/vector-im/element-web)
|
||||
- [Jitsi](https://github.com/jitsi)
|
||||
- [Plume](https://github.com/Plume-org/Plume)
|
||||
- [age](https://github.com/FiloSottile/age)
|
||||
- [Minio](https://github.com/minio/minio)
|
||||
- [Proxmox](https://git.proxmox.com/)
|
||||
- [Grafana](https://github.com/grafana/grafana)
|
||||
- [Prometheus](https://github.com/prometheus/prometheus)
|
||||
- [Infra (legacy)](https://git.deuxfleurs.fr/Deuxfleurs/infrastructure)
|
||||
- [Infra (next)](git.deuxfleurs.fr/Deuxfleurs/nixcfg)
|
||||
|
||||
|
|
@ -1,48 +0,0 @@
|
|||
include _mixin/menu.pug
|
||||
|
||||
block root
|
||||
doctype html
|
||||
html(lang="fr")
|
||||
head
|
||||
meta(charset='utf-8')
|
||||
title 💮💮 deuxfleurs - #{title}
|
||||
link(rel="stylesheet", href="/css/main.css")
|
||||
meta(name="viewport", content="width=device-width, initial-scale=1.0")
|
||||
body
|
||||
aside
|
||||
header
|
||||
a#menu(href="#").mobile_inline
|
||||
svg(viewBox="0 0 100 80", width="40", height="40")
|
||||
rect(width="100", height="20")
|
||||
rect(y="30" width="100" height="20")
|
||||
rect(y="60" width="100" height="20")
|
||||
|
||||
h1
|
||||
a(href="/") deuxfleurs
|
||||
nav.computer_block
|
||||
section.center
|
||||
img(alt="emoji fleur", src="/img/flower.svg", width="40")
|
||||
|
|
||||
img(alt="emoji fleur", src="/img/flower.svg", width="40")
|
||||
ul
|
||||
li
|
||||
a(href="https://plume.deuxfleurs.fr/timeline/1") Actualités
|
||||
li
|
||||
a(href="https://man.deuxfleurs.fr") Wiki
|
||||
li
|
||||
a(href="https://guichet.deuxfleurs.fr") Mon compte
|
||||
hr
|
||||
+menu(root, element)
|
||||
|
||||
main
|
||||
block content
|
||||
|
||||
script.
|
||||
(_ => {
|
||||
const hamburger = document.getElementById('menu')
|
||||
hamburger.onclick = _ => {
|
||||
const nav = document.querySelector('body > aside > header > nav')
|
||||
console.log(nav.style.display)
|
||||
nav.style.display = nav.style.display != 'block' ? 'block' : 'none'
|
||||
}
|
||||
})()
|
|
@ -1,10 +0,0 @@
|
|||
extends ./_layout.pug
|
||||
|
||||
prepend root
|
||||
- if (element.tags.includes('is_index'))
|
||||
- title = element.nice_path[element.nice_path.length - 1]
|
||||
- else
|
||||
- title = element.nice_name
|
||||
|
||||
block content
|
||||
!= markdown
|
|
@ -1,14 +0,0 @@
|
|||
mixin menu(o, element)
|
||||
ul
|
||||
each val in o.children
|
||||
- if (val.type == 'folder' && val.tags.includes('document'))
|
||||
li
|
||||
- if (val.tags.includes('has_index'))
|
||||
a(href=val.url, class=val.index.url == element.url ? 'selected' : null)= val.nice_name
|
||||
- else
|
||||
span= val.nice_name
|
||||
- if (element.url.includes(val.url))
|
||||
+menu(val, element)
|
||||
- else if (val.type == 'file' && val.tags.includes('document') && !val.tags.includes('is_index'))
|
||||
li
|
||||
a(href=val.url, class=val.url == element.url ? 'selected' : null)= val.nice_name
|
|
@ -1,82 +0,0 @@
|
|||
/* some reset */
|
||||
html, body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
font-size: 100%;
|
||||
font: inherit;
|
||||
vertical-align: baseline;
|
||||
height: 100%;
|
||||
font-size: 24px;
|
||||
}
|
||||
|
||||
/* fonts */
|
||||
@font-face {
|
||||
font-family: 'IM Fell English';
|
||||
font-style: italic;
|
||||
font-weight: 400;
|
||||
font-display: swap;
|
||||
src: url(../fonts/IMFellEnglish-Italic.ttf) format('truetype');
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
@font-face {
|
||||
font-family: 'IM Fell English';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
font-display: swap;
|
||||
src: url(../fonts/IMFellEnglish-Regular.ttf) format('truetype');
|
||||
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
|
||||
}
|
||||
|
||||
html {
|
||||
background-color: #fbfcf8;
|
||||
}
|
||||
|
||||
body {
|
||||
max-width: 900px;
|
||||
padding: 1em;
|
||||
margin: auto;
|
||||
font-family: 'IM Fell English', Times, Serif;
|
||||
color: #5c544a;
|
||||
}
|
||||
|
||||
.hero {
|
||||
background-image: url("../img/illus.jpg");
|
||||
transform: rotate(-2deg);
|
||||
height: 530px;
|
||||
background-size: cover;
|
||||
background-position: 50% 0%;
|
||||
border-radius: 10px;
|
||||
margin: -1.8em -1em 3em -1em;
|
||||
}
|
||||
|
||||
.hero img {
|
||||
position: absolute;
|
||||
top: -14px;
|
||||
left: 25px;
|
||||
height: 100px;
|
||||
}
|
||||
|
||||
header {
|
||||
padding: 1em 0em 2em 0em;
|
||||
}
|
||||
|
||||
article {
|
||||
background-color: #f4eccd;
|
||||
padding: 1em;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
.brand {
|
||||
font-size: 2em;
|
||||
float: left;
|
||||
}
|
||||
|
||||
nav {
|
||||
float: right;
|
||||
}
|
||||
|
||||
nav li {
|
||||
padding: 0.5em;
|
||||
display: inline;
|
||||
}
|
Before Width: | Height: | Size: 550 KiB |
Before Width: | Height: | Size: 26 KiB |
|
@ -1,39 +0,0 @@
|
|||
doctype html
|
||||
html
|
||||
head
|
||||
meta(charset="utf-8")
|
||||
title df #{title}
|
||||
link(rel="stylesheet", href="css/main.css")
|
||||
meta(name="viewport", content="width=device-width, initial-scale=1.0")
|
||||
body
|
||||
header
|
||||
.brand Deuxfleurs
|
||||
nav
|
||||
ul
|
||||
li L'association
|
||||
li Nos services
|
||||
li Documentation
|
||||
li
|
||||
a(href="https://guichet.deuxfleurs.fr") Mon compte
|
||||
br(style="clear:both")
|
||||
|
||||
main
|
||||
article
|
||||
.hero
|
||||
img(src="img/paper-clip.png")
|
||||
h1 Cher·e internaute, un autre internet est possible
|
||||
p
|
||||
| Arrêtez-vous cinq minutes. Prenez le temps de l'imaginer avec moi.
|
||||
| Imaginez pouvoir accéder à l'information sans avoir à se demander si c'est une publicité ou non ?
|
||||
| Imaginez que vos communications avec vos proches ne soient pas espionnées pour prédire votre prochain malus d'assurance ?
|
||||
| Imaginez un lieux où vos amis verrez le contenu que vous publiez et non un obscure contenu viral ?
|
||||
// Peut être rajouter des petits dessins genre gribouillage carnet.
|
||||
|
||||
h2 Des cabanes pour se protéger du sombre nuage
|
||||
p Blabla
|
||||
|
||||
h2 Rejoignez-nous
|
||||
|
||||
footer
|
||||
p Un footer
|
||||
|
323
src/css/main.css
|
@ -1,323 +0,0 @@
|
|||
/*
|
||||
* FONTS
|
||||
*/
|
||||
|
||||
@font-face {
|
||||
font-family: "Heroes";
|
||||
src: url('../fonts/texgyreheros-regular.otf') format('truetype');
|
||||
}
|
||||
|
||||
/*
|
||||
* RESET CSS
|
||||
*/
|
||||
|
||||
* {
|
||||
font-family: Heroes;
|
||||
font-size: 1em;
|
||||
/* We use browser's default */
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
html {
|
||||
height: 100%
|
||||
}
|
||||
|
||||
body {
|
||||
display: flex;
|
||||
max-width: 1200px;
|
||||
flex-direction: row;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
/*
|
||||
* RESPONSIVE
|
||||
*/
|
||||
.mobile_block,
|
||||
.mobile_inline {
|
||||
display: none
|
||||
}
|
||||
|
||||
@media screen and (max-width: 800px) {
|
||||
body {
|
||||
flex-direction: column
|
||||
}
|
||||
|
||||
.computer_block {
|
||||
display: none
|
||||
}
|
||||
|
||||
.mobile_block {
|
||||
display: block
|
||||
}
|
||||
|
||||
.mobile_inline {
|
||||
display: inline
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* CORE TEMPLATE
|
||||
*/
|
||||
|
||||
/* Header + Menu */
|
||||
body>aside>header {
|
||||
color: white;
|
||||
background: rgb(12, 144, 110);
|
||||
background: linear-gradient(0deg, rgb(21, 65, 73) 0%, rgb(55, 141, 100) 50%, rgb(12, 144, 110) 100%);
|
||||
padding: 1.5rem;
|
||||
margin: 0.8rem;
|
||||
border-radius: 0.5rem;
|
||||
box-shadow: 0px 0px 30px rgba(31, 38, 103, 0.2);
|
||||
}
|
||||
|
||||
body>aside>header>a>svg {
|
||||
fill: white;
|
||||
display: inline;
|
||||
vertical-align: sub;
|
||||
margin-right: 1em;
|
||||
}
|
||||
|
||||
body>aside>header>h1 {
|
||||
display: inline
|
||||
}
|
||||
|
||||
body>aside>header a {
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
body>aside>header>nav ul {
|
||||
list-style-type: none;
|
||||
padding-left: 1em;
|
||||
}
|
||||
|
||||
body>aside>header>nav>ul {
|
||||
padding-left: 0px
|
||||
}
|
||||
|
||||
body>aside>header>nav a:hover {
|
||||
text-decoration: underline
|
||||
}
|
||||
|
||||
body>aside>header>nav .selected {
|
||||
font-weight: bold
|
||||
}
|
||||
|
||||
body>aside>header>nav .selected::before {
|
||||
content: "» "
|
||||
}
|
||||
|
||||
body>main {
|
||||
padding: 1.5rem;
|
||||
max-width: 1200px;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* TEXT CORE (think markdown)
|
||||
*/
|
||||
|
||||
h1 {
|
||||
font-size: 2.5rem
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 2.0rem
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 1.75rem
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-size: 1.50rem
|
||||
}
|
||||
|
||||
h5 {
|
||||
font-size: 1.25rem
|
||||
}
|
||||
|
||||
h6 {
|
||||
font-size: 1.10rem
|
||||
}
|
||||
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
margin-bottom: 1rem
|
||||
}
|
||||
|
||||
section,
|
||||
p,
|
||||
ul,
|
||||
ol,
|
||||
table,
|
||||
pre {
|
||||
margin-bottom: 1rem
|
||||
}
|
||||
|
||||
ul,
|
||||
ol {
|
||||
padding-left: 1.5em
|
||||
}
|
||||
|
||||
a {
|
||||
color: #08634c;
|
||||
}
|
||||
|
||||
table {
|
||||
border-collapse: collapse
|
||||
}
|
||||
|
||||
th {
|
||||
background-color: #fafafa
|
||||
}
|
||||
|
||||
td,
|
||||
th {
|
||||
border: 1px solid #ddd;
|
||||
padding: 0.3rem 0.5rem;
|
||||
}
|
||||
|
||||
pre {
|
||||
background-color: #1e1e1e;
|
||||
padding: 1rem;
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
code {
|
||||
font-family: Monospace;
|
||||
background-color: #1e1e1e;
|
||||
color: #fff;
|
||||
padding: 0.25rem 0.4rem;
|
||||
}
|
||||
|
||||
img {
|
||||
border-radius: 0.5rem;
|
||||
box-shadow: 0px 0px 30px rgba(31, 38, 103, 0.2);
|
||||
margin: 0.5rem;
|
||||
}
|
||||
|
||||
img.simple {
|
||||
border-radius: 0px;
|
||||
box-shadow: none;
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
strong {
|
||||
background-color: rgb(12, 144, 110);
|
||||
color: #fff;
|
||||
padding: 0.20rem 0.4rem;
|
||||
}
|
||||
|
||||
/*
|
||||
* UTILS
|
||||
*/
|
||||
|
||||
/* float */
|
||||
.left {
|
||||
float: left
|
||||
}
|
||||
|
||||
.right {
|
||||
float: right
|
||||
}
|
||||
|
||||
section::after,
|
||||
p::after {
|
||||
clear: both;
|
||||
display: block;
|
||||
content: "";
|
||||
}
|
||||
|
||||
/* center */
|
||||
.center {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/*
|
||||
* ELEMENTS
|
||||
*/
|
||||
|
||||
input {
|
||||
border: 0.1em black solid;
|
||||
width: 50%;
|
||||
min-width: 300px;
|
||||
font-size: 1.6em;
|
||||
border: 0.1em black solid;
|
||||
padding: 0.3em;
|
||||
}
|
||||
|
||||
.button {
|
||||
padding: 0.3em;
|
||||
background-color: #519c60;
|
||||
font-size: 1.6em;
|
||||
border: 0.1em solid #519c60;
|
||||
color: white;
|
||||
margin: 0em 0em 0em 1em;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/* service button */
|
||||
|
||||
.service-box {
|
||||
color: #000;
|
||||
text-decoration: none;
|
||||
border: 1px solid #ddd;
|
||||
border-radius: 0.5rem;
|
||||
width: 250px;
|
||||
text-align: center;
|
||||
margin: 1em 1em 0em 0em;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.service-box:hover {
|
||||
background-color: #000;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.callout {
|
||||
font-size: 1.2rem;
|
||||
text-align: center;
|
||||
position: relative;
|
||||
margin: 2rem 0;
|
||||
padding: 1rem;
|
||||
border: 1px solid rgba(10, 10, 10, 0.25);
|
||||
border-radius: .2rem;
|
||||
background-color: #cbf0e6;
|
||||
}
|
||||
|
||||
.frame {
|
||||
border-left: 1rem solid #ddd;
|
||||
padding-left: 1rem;
|
||||
}
|
||||
|
||||
img.hero {
|
||||
width: 100%;
|
||||
margin:-0.5rem;
|
||||
}
|
||||
|
||||
h1.slogan {
|
||||
text-align:center;
|
||||
font-size:2rem;
|
||||
padding: 2rem 0rem;
|
||||
}
|
||||
|
||||
.icon {
|
||||
font-size: 80px;
|
||||
height: 120px;
|
||||
}
|
||||
|
||||
section.list {
|
||||
padding-left:1.5rem;
|
||||
}
|
||||
|
||||
p.fill {
|
||||
margin: 2rem 0rem;
|
||||
}
|
Before Width: | Height: | Size: 1.3 KiB |
Before Width: | Height: | Size: 11 KiB |
|
@ -1 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 36 36"><path fill-opacity="0.0" fill="#FFF" d="M15.632 34.661c-.799-.597-1.498-1.484-2.035-2.592l-.228-.47-.46.249c-.975.528-1.913.858-2.744.969l-.202-3.756-3.636.968c-.157-.854-.125-1.887.096-3.022l.103-.525-.532-.066c-1.242-.154-2.306-.525-3.104-1.08l1.521-2.917-2.988-1.523c.319-.944.948-1.882 1.834-2.735l.377-.363-.379-.36c-.803-.764-1.408-1.554-1.77-2.311l3.51-1.353-2.045-3.159c.74-.402 1.693-.686 2.789-.832l.519-.068-.091-.514c-.215-1.211-.172-2.338.124-3.288l3.308.523.524-3.308c.988.013 2.08.326 3.164.907l.462.248.226-.473c.479-1.003 1.044-1.824 1.653-2.404L18 4.326l2.372-2.92c.609.58 1.175 1.401 1.653 2.404l.226.473.462-.247c1.085-.581 2.178-.894 3.164-.906l.523 3.308 3.31-.525c.296.951.34 2.078.124 3.288l-.092.515.518.069c1.095.145 2.048.43 2.788.832l-2.046 3.156 3.511 1.355c-.361.757-.966 1.547-1.77 2.311l-.379.36.377.363c.888.854 1.516 1.793 1.835 2.736l-2.984 1.52 1.521 2.984c-.812.574-1.871.964-3.094 1.134l-.518.072.096.514c.201 1.089.226 2.083.073 2.909l-3.634-.97-.204 3.757c-.83-.11-1.768-.44-2.742-.968l-.459-.249-.228.47c-.539 1.107-1.237 1.994-2.036 2.591L18 32.293l-2.368 2.368z"/><path d="M7.092 10.678c-.53-1.489-.698-2.97-.432-4.2l2.368.375.987.156.157-.988.375-2.368c1.261.127 2.613.743 3.862 1.706.118-.337.244-.663.382-.967-1.551-1.135-3.223-1.763-4.73-1.763-.123 0-.245.004-.366.013l-.511 3.223-3.224-.511c-.6 1.487-.565 3.415.085 5.393.335-.037.684-.061 1.047-.069zm14.501-5.319c1.248-.962 2.6-1.578 3.86-1.705l.376 2.368.156.988.987-.157 2.369-.376c.266 1.23.098 2.71-.432 4.2.361.009.711.032 1.046.07.651-1.978.685-3.906.085-5.394l-3.225.512-.511-3.224c-.12-.008-.242-.012-.365-.012-1.507 0-3.179.628-4.73 1.762.14.306.266.631.384.968zM7.368 27h.035c.067 0 .157-.604.26-.947-.098.004-.197.046-.294.046-1.496 0-2.826-.303-3.83-.89l1.089-2.128.454-.887-.891-.452-2.136-1.088c.508-1.151 1.515-2.25 2.818-3.143-.287-.219-.561-.441-.81-.669-1.687 1.217-2.846 2.755-3.235 4.31l2.908 1.483-1.482 2.843C3.475 26.501 5.303 27 7.368 27zm27.806-5.846c-.39-1.555-1.548-3.093-3.234-4.311-.25.228-.523.451-.81.669 1.304.893 2.31 1.992 2.817 3.145l-2.136 1.088-.891.453.454.892 1.089 2.137c-1.004.587-2.332.904-3.828.904-.099 0-.199-.01-.299-.013.103.344.192.683.26 1.011l.039.002c2.066 0 3.892-.563 5.112-1.587l-1.482-2.908 2.909-1.482zm-12.653 9.182c-.447 1.517-1.181 2.812-2.119 3.651l-1.695-1.694-.707-.707-.707.707-1.695 1.694c-.938-.839-1.673-2.136-2.12-3.652-.296.206-.593.397-.886.563.636 1.98 1.741 3.559 3.1 4.409L18 33l2.308 2.308c1.358-.851 2.464-2.428 3.101-4.408-.295-.168-.591-.359-.888-.564z" fill="#FFF"/><path fill="#FFF" d="M20.118 5.683c.426 1.146.748 2.596.841 4.284l.2 3.683 3.564-.946c1.32-.351 2.655-.536 3.86-.536.16 0 .318.003.474.01l-1.827 2.819 3.139 1.211c-.958.759-2.237 1.514-3.814 2.123l-3.441 1.328 2.001 3.099c.918 1.42 1.509 2.782 1.838 3.96l-3.244-.865-.182 3.357c-1.019-.677-2.132-1.66-3.198-2.973L18 23.374l-2.328 2.862c-1.066 1.312-2.179 2.295-3.198 2.972l-.18-3.354-3.248.864c.329-1.178.921-2.54 1.839-3.961l2.004-3.099-3.442-1.328c-1.577-.609-2.856-1.363-3.814-2.122L8.768 15l-1.827-2.823c.155-.006.313-.01.473-.01 1.206 0 2.541.185 3.861.536l3.564.947.202-3.683c.092-1.688.415-3.138.84-4.284L18 8.292l2.118-2.609m.19-4.991L18 3.533 15.692.692c-1.989 1.532-3.421 4.992-3.646 9.112-1.617-.43-3.192-.637-4.632-.637-2.11 0-3.929.445-5.161 1.289l1.989 3.073-3.415 1.316c.842 2.366 3.69 4.797 7.54 6.283-2.241 3.465-3.116 7.106-2.407 9.516l3.537-.941.196 3.654c2.512-.07 5.703-2.027 8.307-5.228 2.603 3.201 5.796 5.158 8.306 5.228l.198-3.655 3.535.943c.71-2.411-.165-6.05-2.404-9.517 3.849-1.485 6.696-3.918 7.538-6.283l-3.415-1.318 1.99-3.07c-1.233-.844-3.053-1.29-5.164-1.29-1.438 0-3.013.207-4.63.636-.225-4.119-1.657-7.579-3.646-9.111z"/></svg>
|
Before Width: | Height: | Size: 3.7 KiB |
Before Width: | Height: | Size: 82 KiB |
|
@ -1,75 +0,0 @@
|
|||
extends _layout.pug
|
||||
|
||||
prepend root
|
||||
- title = "deuxfleurs"
|
||||
|
||||
block content
|
||||
section
|
||||
img.hero(alt="Photo d'illustration d'un parterre de fleurs en noir et blanc avec un effet tramage.", src="/img/flower.png")
|
||||
|
||||
section
|
||||
h1.slogan fabriquons un internet convivial
|
||||
|
||||
section
|
||||
h2 avec des outils sobres
|
||||
section
|
||||
a.service-box.left(href='https://man.deuxfleurs.fr/prise_en_main/matrix/')
|
||||
.icon 💬
|
||||
h5 discussion
|
||||
a.service-box.left(href='https://man.deuxfleurs.fr/prise_en_main/jitsi/')
|
||||
.icon 📞
|
||||
h5 visioconférence
|
||||
a.service-box.left(href='https://man.deuxfleurs.fr/prise_en_main/web/')
|
||||
.icon 🌐
|
||||
h5 sites web
|
||||
a.service-box.left(href='https://man.deuxfleurs.fr/prise_en_main/emails/')
|
||||
.icon 📨
|
||||
h5 emails (beta)
|
||||
a.service-box.left(href='https://man.deuxfleurs.fr/prise_en_main/cryptpad/')
|
||||
.icon 📄
|
||||
h5 collaboration
|
||||
a.service-box.left(href='https://man.deuxfleurs.fr/prise_en_main/plume/')
|
||||
.icon ✍️
|
||||
h5 blog
|
||||
|
||||
p ⚠️ À part pour la visioconférence et le pad, vous devez avoir un compte pour utiliser ces outils. Faisons connaissance d'abord 👇
|
||||
|
||||
section
|
||||
h2 avec notre propre infrastructure résiliente
|
||||
|
||||
p.fill
|
||||
img.hero(alt="Une photo en noir et blanc de nos différents serveurs hébergés à domicile.", src="/img/servers.jpg")
|
||||
|
||||
p
|
||||
| Pour fournir nos outils, nous récupérons <b>d'anciens ordinateurs</b> que nous reconditionnons pour servir de serveurs et que nous installons à nos domiciles.
|
||||
| Actuellement nous avons des machines à <b>Rennes</b> en Bretagne et à <b>Orsay</b> en Ile de France pour la fourniture des services. Nous avons également des machines à <b>Suresnes</b> en Ile de France pour les sauvegarde. Certains de nos outils techniques sont (temporairement) hébergés en datacenter chez OVH.
|
||||
| <a href="https://man.deuxfleurs.fr/infrastructures/">En savoir plus</a>.
|
||||
|
||||
p
|
||||
| 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>.
|
||||
|
||||
|
||||
section
|
||||
h2 avec des valeurs fortes
|
||||
|
||||
section.list
|
||||
div ⇨ <b>la coopération</b> - eg. promouvoir l'intéropérabilité, les communs, le libre, et les formats de données ouverts
|
||||
div ⇨ <b>l'autonomie</b> - eg. gérer nos propres moyens de communications, prendre nos propres décisions
|
||||
div ⇨ <b>la solidarité</b> - eg. partager le savoir, partager les ressources informatiques, s'entraider pour la gestion des services
|
||||
div ⇨ <b>la liberté</b> - eg. permettre à toutes et tous de s'exprimer, respecter la vie privée
|
||||
|
||||
p
|
||||
a(href="https://plume.deuxfleurs.fr/timeline/1") Suivez notre actualité, réflexions et analyses sur notre blog Plume</a>
|
||||
|
||||
section
|
||||
h2 rejoignez-nous !
|
||||
p.spacing L'accès à nos services est à <b>prix libre</b>, se fait <b>sur demande</b> directement à un membre ou par email et est conditionné par <b>les ressources disponibles</b>, à la fois matérielles et humaines.
|
||||
|
||||
p.spacing Nous encourageons nos usager·es ainsi que toute personne souhaitant collaborer à <b>rejoindre l'association</b> afin de participer à sa gestion. L'admission se fait par <b>cooptation</b>, soit directement si vous connaissez déjà un membre, soit en échangeant d'abord avec nous par email ou sur Matrix. L'objectif de la cooptation est de s'assurer que nos futurs membres partageront bien les valeurs de notre association. La cotisation est de <b>10 euros par an</b>.
|
||||
|
||||
p.spacing
|
||||
| Si vous connaissez un membre de l'association, contactez le directement !
|
||||
br
|
||||
| Sinon, vous pouvez nous écrire à <b>coucou</b><img class="simple" alt="arobase" src="img/arobase.png" height="15"/><b>deuxfleurs.fr</b> ou nous rejoindre sur notre salon Matrix #deuxfleurs:deuxfleurs.fr pour un premier contact.
|
||||
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
|
@ -2,6 +2,9 @@
|
|||
"m.homeserver": {
|
||||
"base_url": "https://im.deuxfleurs.fr"
|
||||
},
|
||||
"org.matrix.msc3575.proxy": {
|
||||
"url": "https://im-syncv3.deuxfleurs.fr"
|
||||
},
|
||||
"m.identity_server": {
|
||||
"base_url": "https://vector.im"
|
||||
},
|
1
static/.well-known/matrix/server
Normal file
|
@ -0,0 +1 @@
|
|||
{ "m.server": "im.deuxfleurs.fr:443" }
|
9
static/@404.html
Normal file
|
@ -0,0 +1,9 @@
|
|||
<!DOCTYPE html><html lang="fr"><head><meta charset="utf-8"><title>💮💮 deuxfleurs</title></head>
|
||||
<body>
|
||||
<p>Erreur 404 - page non trouvée, cette page n'existe pas (ou a été déplacée, j'en sais rien moi !)</p>
|
||||
<p>Est-ce que tu cherches la <a href="https://deuxfleurs.fr/">page d'accueil</a> ?
|
||||
Le <a href="https://guide.deuxfleurs.fr/">guide</a> ?
|
||||
Le <a href="https://guichet.deuxfleurs.fr/">guichet</a> ?
|
||||
Les <a href="https://plume.deuxfleurs.fr/">big news de l'espace</a> ?</p>
|
||||
<p>Si tu es toujours paumé⋅e, viens nous parler sur Matrix ou écris à <code>coucou@deuxfleurs.fr</code>!</p>
|
||||
</body></html>
|
593
static/cgu.html
Normal file
575
static/css/home.css
Normal file
|
@ -0,0 +1,575 @@
|
|||
/*GESTION DE LA GRILLE DE LA PAGE PRINCIPALE */
|
||||
main {
|
||||
grid-area: main-row-debut / main-col-start / main-row-fin / main-col-sep 12;
|
||||
|
||||
display: grid;
|
||||
grid-template-columns: [col-start] repeat(12, calc(100% / 12) [col-sep]);
|
||||
grid-template-rows:
|
||||
[row-start] auto [jardin-end]
|
||||
repeat(3, var(--big_margin) [title-start] auto [title-end] var(--med_margin) [illu-start] auto [illu-end] auto [illu-extended-end] var(--med_margin) [txt-start] auto [txt-end])
|
||||
var(--big_margin)
|
||||
[title-start-contact] auto [title-end-contact]
|
||||
var(--med_margin)
|
||||
[txt-start-contact] auto [txt-end-contact] auto [cal-end-contact] /* au lieu de mettre auto on pourrait mettre 100px ici pour avoir les 2 cadres de la même taille*/
|
||||
;
|
||||
}
|
||||
|
||||
div#jardin {
|
||||
background-color: var(--jardin);
|
||||
grid-area: row-start / col-start / jardin-end / col-sep 12;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
height: 100vh;
|
||||
}
|
||||
|
||||
div#jardin p {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
h2#infras {
|
||||
background-color: var(--infras);
|
||||
grid-area: title-start 1 / col-sep 1 / title-end 1 / col-sep 12;
|
||||
padding-bottom: 10px; /* Ajoutez de l'espace en dessous du texte */
|
||||
}
|
||||
|
||||
div#rennes {
|
||||
background-color: var(--rennes);
|
||||
grid-area: illu-start 1 / col-sep 1 / illu-end 1 / col-sep 6;
|
||||
overflow: hidden;
|
||||
/*height: 450px;*/
|
||||
}
|
||||
|
||||
div#orsay {
|
||||
background-color: var(--orsay);
|
||||
grid-area: illu-start 1 / col-sep 6 / illu-end 1 / col-sep 11;
|
||||
overflow: hidden;
|
||||
/*height:450px;*/
|
||||
}
|
||||
|
||||
p#txt_infras {
|
||||
background-color: var(--txt_infras);
|
||||
grid-area: txt-start 1 / col-sep 1 / txt-end 1 / col-sep 7;
|
||||
}
|
||||
|
||||
h2#outils {
|
||||
background-color: var(--outils);
|
||||
grid-area: title-start 2 / col-sep 1 / title-end 2 / col-sep 12;
|
||||
}
|
||||
|
||||
section#liste_outils {
|
||||
background-color: var(--liste_outils);
|
||||
grid-area: illu-start 2 / col-sep 7 / illu-end 2 / col-sep 11;
|
||||
}
|
||||
|
||||
section#liste_outils > a > div > p {
|
||||
text-align: center;
|
||||
text-decoration: underline;
|
||||
color: darkgreen;
|
||||
}
|
||||
|
||||
section#liste_outils > a {
|
||||
/*display: contents;*/
|
||||
color: black;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
section#liste_outils > a:hover {
|
||||
color: darkgreen;
|
||||
}
|
||||
|
||||
div#txt_outils {
|
||||
background-color: var(--txt_outils);
|
||||
grid-area: txt-start 2 / col-sep 1 / txt-end 2 / col-sep 7;
|
||||
}
|
||||
|
||||
h2#valeurs {
|
||||
background-color: var(--valeurs);
|
||||
grid-area: title-start 3 / col-sep 1 / title-end 3 / col-sep 12;
|
||||
}
|
||||
|
||||
div#ronce {
|
||||
background-color: var(--ronce);
|
||||
grid-area: illu-start 3 / col-sep 2 / illu-end 3 / col-sep 10;
|
||||
padding: 0.5rem;
|
||||
filter: grayscale(100%);
|
||||
border: 1px dashed black;
|
||||
transition: filter 0.15s ease 0s;
|
||||
}
|
||||
|
||||
div#ronce:hover {
|
||||
filter: none;
|
||||
}
|
||||
|
||||
section#liste_valeurs {
|
||||
background-color: var(--liste_valeurs);
|
||||
grid-area: txt-start 3 / col-sep 2 / txt-end 3 / col-sep 10;
|
||||
}
|
||||
|
||||
h2#connaissance {
|
||||
background-color: var(--connaissance);
|
||||
grid-area: title-start-contact / col-sep 1 / title-end-contact / col-sep 12;
|
||||
}
|
||||
|
||||
div#txt_connaissance {
|
||||
background-color: var(--txt_connaissance);
|
||||
grid-area: txt-start-contact / col-sep 1 / txt-end-contact / col-sep 6;
|
||||
}
|
||||
|
||||
div#calendrier {
|
||||
background-color: var(--calendrier);
|
||||
grid-area: txt-start-contact / col-sep 7 / txt-end-contact / col-sep 10;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.mois_actuel,
|
||||
.mois_suivant {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/*GESTION DE LA GRILLE LISTE DE NOS VALEURS*/
|
||||
|
||||
section#liste_valeurs {
|
||||
/*on ne peut pas faire plusieurs opérations en même temps dans calc, il faut un calc par opération*/
|
||||
--demie-goutiere: calc(var(--small_margin) / 2);
|
||||
--valeurs_width: calc(50% - var(--demie-goutiere));
|
||||
display: grid;
|
||||
grid-template-columns:
|
||||
[col2-start] var(--valeurs_width) [col2-mid-left] /*bloc de gauche*/
|
||||
var(--small_margin) /*goutière*/
|
||||
[col2-mid-right] var(--valeurs_width) [col2-end]; /*bloc de droite*/
|
||||
grid-template-rows:
|
||||
[line1-start] auto [line1-end]
|
||||
var(--small_margin)
|
||||
[line2-start] auto [line2-end]
|
||||
var(--small_margin)
|
||||
[suivre-start] auto [suivre-end]
|
||||
;
|
||||
}
|
||||
|
||||
p#coop {
|
||||
background-color: var(--lightgrey);
|
||||
grid-area: line1-start / col2-start / line1-end / col2-mid-left;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
p#autonomie {
|
||||
background-color: var(--lightgrey);
|
||||
grid-area: line1-start / col2-mid-right / line1-end / col2-end;
|
||||
}
|
||||
|
||||
p#solidarite {
|
||||
background-color: var(--lightgrey);
|
||||
grid-area: line2-start / col2-start / line2-end / col2-mid-left;
|
||||
}
|
||||
|
||||
p#liberte {
|
||||
background-color: var(--lightgrey);
|
||||
grid-area: line2-start / col2-mid-right / line2-end / col2-end;
|
||||
}
|
||||
|
||||
p#suivre {
|
||||
background-color: var(--lightgrey);
|
||||
grid-area: suivre-start / col2-start / suivre-end / col2-end;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#coop,
|
||||
#autonomie,
|
||||
#solidarite,
|
||||
#liberte {
|
||||
padding: 2rem;
|
||||
border: 1px dashed black;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
section#liste_outils {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
column-gap: 1rem;
|
||||
row-gap: 1rem;
|
||||
}
|
||||
|
||||
section#liste_outils > a > div {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
div#ordinateur {
|
||||
background-color: var(--lightgrey);
|
||||
grid-area: illu-start 2 / col-start / illu-end 2 / col-sep 7;
|
||||
}
|
||||
|
||||
div#discussion {
|
||||
background-color: var(--lightgrey);
|
||||
grid-area: line1-start / col-start / line1-end / col-mid-left;
|
||||
}
|
||||
|
||||
div#visio {
|
||||
background-color: var(--lightgrey);
|
||||
grid-area: line2-start / col-start / line2-end / col-mid-left;
|
||||
}
|
||||
|
||||
div#sites-web {
|
||||
background-color: var(--lightgrey);
|
||||
grid-area: line3-start / col-start / line3-end / col-mid-left;
|
||||
}
|
||||
|
||||
div#emails {
|
||||
background-color: var(--lightgrey);
|
||||
grid-area: line1-start / col-mid-right / line1-end / col-end;
|
||||
}
|
||||
|
||||
div#collaboration {
|
||||
background-color: var(--lightgrey);
|
||||
grid-area: line2-start / col-mid-right / line2-end / col-end;
|
||||
}
|
||||
|
||||
div#blog {
|
||||
background-color: var(--lightgrey);
|
||||
grid-area: line3-start / col-mid-right / line3-end / col-end;
|
||||
}
|
||||
|
||||
/*GESTION DES MEDIA QUERIES*/
|
||||
|
||||
/*Tablettes et petits ordinateurs*/
|
||||
@media (max-width: 1500px) and (min-width: 801px) {
|
||||
h2#infras {
|
||||
grid-area: title-start 1 / col-sep 1 / title-end 1 / col-sep 12;
|
||||
}
|
||||
|
||||
h2#outils {
|
||||
grid-area: title-start 2 / col-sep 1 / title-end 2 / col-sep 12;
|
||||
}
|
||||
|
||||
h2#valeurs {
|
||||
grid-area: title-start 3 / col-sep 1 / title-end 3 / col-sep 12;
|
||||
}
|
||||
|
||||
h2#connaissance {
|
||||
grid-area: title-start-contact / col-sep 1 / title-end-contact / col-sep 12;
|
||||
}
|
||||
|
||||
div#rennes {
|
||||
grid-area: illu-start 1 / col-sep 2 / illu-end 1 / col-sep 6;
|
||||
margin-right: 0.5rem;
|
||||
}
|
||||
|
||||
div#orsay {
|
||||
grid-area: illu-start 1 / col-sep 6 / illu-end 1 / col-sep 10;
|
||||
margin-left: 0.5rem;
|
||||
}
|
||||
|
||||
div#rennes,
|
||||
div#orsay {
|
||||
border: 1px solid black;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
div#rennes pre.center,
|
||||
div#orsay pre.center {
|
||||
margin-top: -5px;
|
||||
margin-bottom: -5px;
|
||||
}
|
||||
|
||||
div#orsay pre.center {
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
p#txt_infras {
|
||||
background-color: var(--txt_infras);
|
||||
grid-area: txt-start 1 / col-sep 2 / txt-end 1 / col-sep 10;
|
||||
}
|
||||
|
||||
div#txt_outils {
|
||||
background-color: var(--txt_outils);
|
||||
grid-area: txt-start 2 / col-sep 2 / txt-end 2 / col-sep 10;
|
||||
}
|
||||
|
||||
div#txt_connaissance {
|
||||
grid-area: txt-start-contact / col-sep 2 / txt-end-contact / col-sep 10;
|
||||
}
|
||||
|
||||
div#txt_connaissance ul {
|
||||
padding-left: 0px;
|
||||
list-style-position: inside;
|
||||
}
|
||||
|
||||
div#ordinateur {
|
||||
grid-area: illu-start 2 / col-sep 1 / illu-end 2 / col-sep 11;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
section#liste_outils {
|
||||
background-color: var(--liste_outils);
|
||||
grid-area: illu-end 2 / col-sep 1 / illu-extended-end 2 / col-sep 11;
|
||||
margin-top: var(--med_margin);
|
||||
}
|
||||
|
||||
section#liste_outils {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr 1fr;
|
||||
row-gap: 1rem;
|
||||
column-gap: 1rem;
|
||||
}
|
||||
|
||||
div#discussion {
|
||||
background-color: var(--lightgrey);
|
||||
grid-area: line1-start / col-tiers1-start / line1-end / col-tiers1-end;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
div#emails {
|
||||
background-color: var(--lightgrey);
|
||||
grid-area: line1-start / col-tiers2-start / line1-end / col-tiers2-start;
|
||||
}
|
||||
|
||||
div#visio {
|
||||
background-color: var(--lightgrey);
|
||||
grid-area: line1-start / col-tiers3-start / line1-end / col-tiers3-end;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
div#sites-web {
|
||||
background-color: var(--lightgrey);
|
||||
grid-area: line2-start / col-tiers1-start / line2-end / col-tiers1-end;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
div#collaboration {
|
||||
background-color: var(--lightgrey);
|
||||
grid-area: line2-start / col-tiers2-start / line2-end / col-tiers2-end;
|
||||
}
|
||||
|
||||
div#blog {
|
||||
background-color: var(--lightgrey);
|
||||
grid-area: line2-start / col-tiers3-start / line2-end / col-tiers3-end;
|
||||
}
|
||||
|
||||
div#ronce {
|
||||
grid-area: illu-start 3 / col-sep 1 / illu-end 3 / col-sep 11;
|
||||
}
|
||||
|
||||
div#calendrier {
|
||||
margin-top: var(--med_margin);
|
||||
grid-area: txt-end-contact / col-sep 1 / cal-end-contact / col-sep 11;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
#mois_actuel,
|
||||
#mois_suivant {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
#mois_actuel {
|
||||
margin-bottom: 0px;
|
||||
margin-right: 2rem;
|
||||
}
|
||||
}
|
||||
|
||||
/*Smartphones*/
|
||||
@media (max-width: 800px) {
|
||||
h2#infras {
|
||||
grid-area: title-start 1 / col-start / title-end 1 / col-sep 12;
|
||||
}
|
||||
|
||||
h2#outils {
|
||||
grid-area: title-start 2 / col-start / title-end 2 / col-sep 12;
|
||||
}
|
||||
|
||||
h2#valeurs {
|
||||
grid-area: title-start 3 / col-start / title-end 3 / col-sep 12;
|
||||
}
|
||||
|
||||
h2#connaissance {
|
||||
grid-area: title-start-contact / col-start / title-end-contact / col-sep 12;
|
||||
}
|
||||
|
||||
div#jardin {
|
||||
grid-area: row-start / col-sep 1 / jardin-end / col-sep 11;
|
||||
}
|
||||
|
||||
nav#menu {
|
||||
position: fixed;
|
||||
width: 100%;
|
||||
right: 0px;
|
||||
bottom: 0px;
|
||||
padding-bottom: 1rem;
|
||||
background-color: --day-background;
|
||||
z-index: 1;
|
||||
border-top: black 1px dashed;
|
||||
}
|
||||
|
||||
nav#menu ul {
|
||||
list-style: none;
|
||||
flex-direction: row;
|
||||
display: flex;
|
||||
justify-content: space-evenly;
|
||||
padding: 0px;
|
||||
margin: 0px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
div#txt_connaissance ul {
|
||||
padding-left: 0px;
|
||||
list-style-position: inside;
|
||||
margin-bottom: var(--med_margin);
|
||||
}
|
||||
|
||||
.icone > pre {
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
|
||||
#illustration-accueil > pre.center {
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
|
||||
div#orsay {
|
||||
display: none;
|
||||
}
|
||||
|
||||
div#rennes {
|
||||
grid-area: illu-start 1 / col-sep 1 / illu-end 1 / col-sep 11;
|
||||
border: 1px solid black;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
div#rennes pre {
|
||||
margin-top: -5px;
|
||||
margin-bottom: -5px;
|
||||
}
|
||||
|
||||
pre {
|
||||
font-size: 0.95rem;
|
||||
}
|
||||
|
||||
#txt_infras,
|
||||
#txt_outils,
|
||||
#txt_connaissance {
|
||||
text-align: left;
|
||||
hyphens: none;
|
||||
margin-top: 0;
|
||||
hyphens: none;
|
||||
word-spacing: -2px;
|
||||
-ms-hyphens: none;
|
||||
-webkit-hyphens: none;
|
||||
-moz-hyphens: none;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
p#txt_infras {
|
||||
background-color: var(--txt_infras);
|
||||
grid-area: txt-start 1 / col-sep 1 / txt-end 1 / col-sep 11;
|
||||
}
|
||||
|
||||
div#txt_outils {
|
||||
background-color: var(--txt_outils);
|
||||
grid-area: txt-start 2 / col-sep 1 / txt-end 2 / col-sep 11;
|
||||
}
|
||||
|
||||
div#txt_connaissance {
|
||||
grid-area: txt-start-contact / col-sep 1 / txt-end-contact / col-sep 11;
|
||||
}
|
||||
|
||||
div#ordinateur {
|
||||
display: none;
|
||||
}
|
||||
|
||||
section#liste_outils {
|
||||
display: block;
|
||||
}
|
||||
|
||||
section#liste_outils {
|
||||
grid-area: illu-start 2 / col-start / illu-end 2 / col-sep 12;
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
section#liste_outils pre {
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
section#liste_outils > a > div {
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
div#ronce {
|
||||
grid-area: illu-start 3 / col-sep 1 / illu-end 3 / col-sep 11;
|
||||
border: none;
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
#coop,
|
||||
#autonomie,
|
||||
#solidarite,
|
||||
#liberte {
|
||||
padding: 1rem;
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
#suivre {
|
||||
margin-top: 2rem;
|
||||
}
|
||||
|
||||
section#liste_valeurs {
|
||||
grid-area: txt-start 3 / col-sep 1 / txt-end 3 / col-sep 11;
|
||||
}
|
||||
|
||||
section#liste_valeurs .description {
|
||||
display: none;
|
||||
}
|
||||
|
||||
div#calendrier {
|
||||
grid-area: txt-end-contact / col-sep 1 / cal-end-contact / col-sep 11;
|
||||
display: none;
|
||||
}
|
||||
|
||||
div#calendrier > pre.center {
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
footer pre.center {
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
|
||||
#liens {
|
||||
text-align: center;
|
||||
margin-bottom: 12rem;
|
||||
}
|
||||
}
|
||||
|
||||
/* En vrac */
|
||||
div#calendrier > pre.center {
|
||||
justify-content: right;
|
||||
}
|
||||
|
||||
#calendrier #mois_actuel {
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
#mois_actuel,
|
||||
#mois_suivant {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#txt_connaissance li {
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
#txt_connaissance p {
|
||||
margin-top: 0px;
|
||||
}
|
||||
|
||||
#txt_infras,
|
||||
#txt_outils,
|
||||
#txt_connaissance {
|
||||
line-height: 1.3rem;
|
||||
text-align: justify;
|
||||
text-justify: inter-character;
|
||||
hyphens: auto;
|
||||
word-spacing: -2px;
|
||||
-ms-hyphens: auto;
|
||||
-webkit-hyphens: auto;
|
||||
-moz-hyphens: auto;
|
||||
margin-top: 0;
|
||||
}
|
277
static/css/layout.css
Normal file
|
@ -0,0 +1,277 @@
|
|||
/*PARAMETRES GENERAUX*/
|
||||
:root {
|
||||
--big_margin: 100px;
|
||||
--med_margin: 50px;
|
||||
--small_margin: 10px;
|
||||
--day-background: #fdfff9;
|
||||
--day-highlight-color: white;
|
||||
--day-highlight-bg: darkgreen;
|
||||
--night-highlight-color: #ebebed;
|
||||
--night-highlight-bg: #565a4d;
|
||||
--night-background: #242526; /*#3c3c39;*/
|
||||
--txt-night: #ebebed; /*#c7c4d4;*/
|
||||
color-scheme: light dark;
|
||||
/*
|
||||
--menu: pink;
|
||||
--jardin: darkseagreen;
|
||||
--infras: gold;
|
||||
--rennes: orange;
|
||||
--orsay: chartreuse;
|
||||
--txt_infras: bisque;
|
||||
--outils: coral;
|
||||
--liste_outils: aliceblue;
|
||||
--txt_outils: aquamarine;
|
||||
--valeurs: grey;
|
||||
--ronce: cornflowerblue;
|
||||
--liste_valeurs: brown;
|
||||
--connaissance: chocolate;
|
||||
--txt_connaissance: crimson;
|
||||
--calendrier: darkkhaki;
|
||||
--footer: deeppink;
|
||||
--lightgrey: lightgrey;*/
|
||||
}
|
||||
|
||||
/* PAR DEFAUT */
|
||||
|
||||
h1 > .decoration:last-of-type:before, h2 > .decoration:last-of-type:before{
|
||||
content: '\A____________________________________\A""""""""""""""""""""""""""""""""""""';
|
||||
}
|
||||
|
||||
html, body, main {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: monospace;
|
||||
color: black;
|
||||
background-color: var(--day-background);
|
||||
}
|
||||
|
||||
pre {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
p {
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
a {
|
||||
color: darkgreen;
|
||||
}
|
||||
|
||||
nav ul {
|
||||
list-style: none;
|
||||
padding: 0px;
|
||||
margin: 0px;
|
||||
}
|
||||
|
||||
h2, h1 {
|
||||
font-size: 1rem;
|
||||
font-weight: normal;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
h2, h1 {
|
||||
text-transform: uppercase;
|
||||
white-space: pre;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
img {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.noscroll {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.highlight {
|
||||
color: var(--day-highlight-color);
|
||||
background-color: var(--day-highlight-bg);
|
||||
}
|
||||
|
||||
.underline {
|
||||
text-decoration-line: underline;
|
||||
}
|
||||
|
||||
/*GESTION DE LA GRILLE DU DOCUMENT*/
|
||||
div#container {
|
||||
display: grid;
|
||||
grid-template-columns: [main-col-start] repeat(12, calc(100% / 12) [main-col-sep]);
|
||||
grid-template-rows:
|
||||
[main-row-debut] var(--med_margin)
|
||||
[header-start] auto
|
||||
[header-end] var(--big_margin)
|
||||
[core-start] auto
|
||||
[main-row-fin] var(--big_margin)
|
||||
[footer-start] auto [footer-end]
|
||||
;
|
||||
}
|
||||
|
||||
/* EN-TETE */
|
||||
header {
|
||||
grid-area: header-start / main-col-sep 1 / header-end / main-col-sep 12;
|
||||
z-index: 1; /* Pour le mettre au dessus de l'illustration jardin et que l'on puisse sélectionner son contenu */
|
||||
}
|
||||
|
||||
/* PIED DE PAGE */
|
||||
footer {
|
||||
background-color: var(--footer);
|
||||
grid-area: footer-start / main-col-start / footer-end / main-col-sep 12;
|
||||
}
|
||||
|
||||
#liens {
|
||||
text-align: center;
|
||||
margin-bottom: var(--med_margin);
|
||||
}
|
||||
|
||||
/* MENU */
|
||||
nav#menu {
|
||||
background-color: var(--day-background);
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
flex-direction: column;
|
||||
position: fixed;
|
||||
bottom: 1rem;
|
||||
right: 1rem;
|
||||
}
|
||||
|
||||
.icone > pre {
|
||||
padding-top: 1rem;
|
||||
color: black;
|
||||
}
|
||||
|
||||
.icone {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.icone .img_top {
|
||||
display: none;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
z-index: 99;
|
||||
background-color: var(--day-background);
|
||||
color: darkgreen;
|
||||
}
|
||||
|
||||
.icone:hover .img_top {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
.icone a {
|
||||
text-decoration: none;
|
||||
color: black;
|
||||
}
|
||||
|
||||
nav#menu > a {
|
||||
display: block;
|
||||
color: black;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
nav#menu > a:hover {
|
||||
color: darkgreen;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/* ILLUSTRATIONS ASCII (Y COMPRIS FOOTER) */
|
||||
pre.center {
|
||||
font-size: 1rem;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
pre.hide {
|
||||
display: none;
|
||||
}
|
||||
pre.center > a {
|
||||
font-size: 1rem;
|
||||
display: contents;
|
||||
text-decoration: 1px black solid;
|
||||
}
|
||||
|
||||
/* RESPONSIVE */
|
||||
/* Tablettes */
|
||||
@media (max-width: 1500px) and (min-width: 801px) {
|
||||
h2,
|
||||
h1 {
|
||||
font-size: 1rem;
|
||||
font-weight: normal;
|
||||
margin: 0px;
|
||||
padding: 0px;
|
||||
text-transform: uppercase;
|
||||
white-space: pre;
|
||||
overflow: hidden;
|
||||
}
|
||||
}
|
||||
|
||||
/* Smartphones */
|
||||
@media (max-width: 800px) {
|
||||
:root {
|
||||
--big_margin: 50px;
|
||||
--med_margin: 25px;
|
||||
--small_margin: 5px;
|
||||
}
|
||||
|
||||
h1 > .decoration:last-of-type:before {
|
||||
content: "";
|
||||
}
|
||||
|
||||
h2 > .decoration:first-of-type:before{
|
||||
content: '______________________________________________________________________\A""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""\A* ';
|
||||
}
|
||||
|
||||
h2 > .decoration:last-of-type:before{
|
||||
content: ' *\A______________________________________________________________________\A""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""';
|
||||
}
|
||||
|
||||
h2, h1 {
|
||||
font-size: 1rem;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
h2, h1 {
|
||||
text-transform: uppercase;
|
||||
white-space: pre;
|
||||
overflow: hidden;
|
||||
}
|
||||
}
|
||||
|
||||
/* THEME SOMBRE */
|
||||
@media (prefers-color-scheme: dark) {
|
||||
div#container, nav#menu, body {
|
||||
background-color: var(--night-background);
|
||||
}
|
||||
p, pre, ul, li, a, a:hover, h1, h2, footer {
|
||||
color: var(--txt-night);
|
||||
}
|
||||
.highlight {
|
||||
color: var(--night-highlight-color);
|
||||
background-color: var(--night-highlight-bg);
|
||||
}
|
||||
.icone > pre {
|
||||
color: var(--txt-night);
|
||||
}
|
||||
.icone .img_top {
|
||||
background-color: var(--night-background);
|
||||
color: var(--txt-night);
|
||||
}
|
||||
.icone a {
|
||||
color: var(--txt-night);
|
||||
}
|
||||
div#ronce, #coop, #autonomie, #solidarite, #liberte, nav#menu, div#rennes, div#orsay {
|
||||
border-color: var(--txt-night);
|
||||
}
|
||||
section#liste_outils > a > div > p:nth-child(n){
|
||||
color: var(--txt-night);
|
||||
}
|
||||
}
|
18
static/css/page-generic.css
Normal file
|
@ -0,0 +1,18 @@
|
|||
/*GESTION DE LA GRILLE D'UNE PAGE DE TEXTE LEGAL/INFO/BORRING */
|
||||
main {
|
||||
grid-area: core-start / main-col-sep 3 / main-row-fin / main-col-sep 9;
|
||||
}
|
||||
|
||||
/* Tablettes */
|
||||
@media (max-width: 1500px) and (min-width: 801px) {
|
||||
main {
|
||||
grid-area: core-start / main-col-sep 1 / main-row-fin / main-col-sep 11;
|
||||
}
|
||||
}
|
||||
|
||||
/* Smartphones */
|
||||
@media (max-width: 800px) {
|
||||
main {
|
||||
grid-area: core-start / main-col-start / main-row-fin / main-col-sep 12;
|
||||
}
|
||||
}
|
117
static/evenements_passes.html
Normal file
|
@ -0,0 +1,117 @@
|
|||
<!-- Liste des evenements passés -->
|
||||
<!-- SEPTEMBRE -->
|
||||
<!--<li role="none"><a href="https://freedomnotfear.org/">Freedom not Fear</a> au Mundo B (Bruxelles), <span class="highlight">du 2 au 5 septembre.</span><br>Conférence pour défendre les libertés fondamentales dans le numérique : échanges sur le cadre légal au niveau européen, rencontre avec des députés.</li>
|
||||
<li role="none"><a href="https://www.laquadrature.net/agenda/">Quadr'apéro</a> à La Quadrature du Net (Paris), <span class="highlight">le 15 septembre à 19h.</span><br>Rencontre mensuelle avec la Quadrature, échange sur les libertés fondamentales et point sur les actions de LQDN.</li>
|
||||
<li role="none"><a href="https://www.agendadulibre.org/events/25967">Cafés du libre</a> au Café Citoyen (Lille), <span class="highlight">le 27 septembre à 20h.</span><br>La permanence associative autour du Libre est une manifestation conviviale, ouverte à toutes et tous, organisée par Chtinux le dernier mardi de chaque mois. Vous pourrez y rencontrer Adrien.</li>
|
||||
-->
|
||||
<!-- OCTOBRE -->
|
||||
<!--<li role="none"><a href="https://agiralyon.fr/">Festival Agir à Lyon</a> à la Maison pour tous des Rancy (Lyon), <span class="highlight">le 9 octobre.</span><br>Festival organisé par Anciela pour agir pour la transition écologique et solidaire. Quentin présentera notre vision de la sobriété numérique avec Commown et Telecoop.</li>
|
||||
<li role="none"><a href="https://www.agendadulibre.org/events/26101">Permanence associative autour du libre</a> au Café Citoyen (Lille), <span class="highlight">le 25 octobre à 20h.</span><br>La permanence associative autour du Libre est une manifestation conviviale, ouverte à toutes et tous, organisée par <a href="https://raoull.org/">Raoull</a> et Deuxfleurs le dernier mardi de chaque mois. Vous pourrez y rencontrer Adrien.</li>
|
||||
<li role="none"><a href="https://pad.deuxfleurs.fr/form/#/2/form/view/mAscGaMNHcBlHs1H30bP-tqOsGrP-kLkGvFipK+EuvE/embed/">Permanence Deuxfleurs</a> à Bricologis, Vaulx en Velin (proche Lyon), <span class="highlight">le 29 octobre de 14h à 16h.</span><br>Deuxfleurs organise sa première permanence avec Bricologis pour vous aider à transitionner vers un Internet éthique ! L'inscription est requise en cliquant sur le lien ci-dessus.</li>
|
||||
-->
|
||||
<!-- NOVEMBRE -->
|
||||
<!--
|
||||
<li role="none"><a href="https://capitoledulibre.org/">Capitole du Libre</a> à l'ENSEEIHT (Toulouse), <span class="highlight">le 19 et 20 novembre.</span><br>Conférence annuelle dédiée au logiciel libre, ouverte à tout public et ceci gratuitement. Vincent y présentera le logiciel Garage et ses impacts sur l'hébergement de services.</li>
|
||||
<li role="none"><a href="https://www.agendadulibre.org/events/26185">Permanence associative autour du libre</a> au Café Citoyen (Lille), <span class="highlight">le 29 novembre à 20h.</span><br>La permanence associative autour du Libre est une manifestation conviviale, ouverte à toutes et tous, organisée par Raoull et Deuxfleurs le dernier mardi de chaque mois. Vous pourrez y rencontrer Adrien.</li>
|
||||
-->
|
||||
<!-- JANVIER -->
|
||||
<!--<li role="none"><a href="https://flechedor.org/agenda/2023-01-14-technopolice-jo-securitaires-l-etau-se-resserre">Soirée Technopolice</a> à la Flèche d'Or (Paris), <span class="highlight">le 14 janvier à 18h.</span><br>Soirée de présentation, débats, et ateliers dans le cadre de l'initiative Technopolice créée par la Quadrature du Net, particulièrement centrée sur l'organisation des Jeux Olympiques de 2024. Vous pourrez y rencontrer Vincent.</li>
|
||||
<li role="none"><a href="https://formation.emancipasso.net/Programme">Formation Émancip'asso</a> à la Fondation FPH (Paris), <span class="highlight">du 16 au 20 janvier.</span><br>Constatant que les hébergeurs éthiques sont peu nombreux à proposer des solutions prenant en compte les besoins des associations, et notamment l’accompagnement nécessaire pour mener à bien une démarche de transition vers des outils numériques libres, le projet Emancip’Asso souhaite accompagner la montée en compétence des hébergeurs de services alternatifs en leur proposant une formation. La formation est privée mais vous pouvez rencontrer Quentin en soirée ou nous écrire pour partager les besoins numérique de votre association.</li>
|
||||
<li role="none"><a href="https://tmci.fr/wp-content/uploads/2022/12/programme-llpt-21-01-2023.pdf">Logiciel libre pour Tout</a> au Centre Municipal de Loisirs (Tarare), <span class="highlight">le 21 janvier de 10h à 17h.</span><br>TARARE MICRO Club Informatique organise une journée informatique libre, grand public et pour les associations. Au programme : ateliers, conférences, projection de film. Deuxfleurs y proposera des ateliers et vous pourrez rencontrer Quentin.
|
||||
</li>-->
|
||||
<!-- FEVRIER -->
|
||||
<!--<li role="none"><a href="https://jitsi.deuxfleurs.fr/AG_DF_2023">Assemblée générale ordinaire</a> en ligne, <span class="highlight">le 12 février à 15h.</span><br>Comme chaque année, l'association Deuxfleurs organise son assemblée générale. Divers sujets seront abordés, avec notamment l'élection du nouveau bureau pour un an. Vous pourrez y voir tous les membres ou presque.
|
||||
</li>
|
||||
|
||||
<li role="none"><a href="http://www.salonprimevere.org/">Salon Primevère</a> à Eurexpo (Lyon), <span class="highlight">du 17 au 19 février.</span><br> Organisé par une association et réalisé par 300 bénévoles, le salon Primevère a pour ambition de réunir les acteurs de l’écologie pour présenter des alternatives militantes cohérentes et éthiques à la société actuelle, dans une ambiance conviviale. Vous pourrez y rencontrer Quentin au stand de Hadoly dans l'espace numérique.
|
||||
</li>-->
|
||||
<!-- MARS -->
|
||||
<!--<li role="none"><a href="#">Atelier Brico #1</a> à Bricologis (Vaulx-en-Velin), <span class="highlight">le 18 mars.</span><br> Deuxfleurs organise un atelier à Bricologis à Vaulx-en-Velin pour découvrir le concept de système d'exploitation (OS), pourquoi ça impacte notre rapport à l'informatique, et comprendre ce que les alternatives comme Ubuntu peuvent nous apporter. Inscription possible prochainement.
|
||||
</li>
|
||||
<li role="none"><a href="https://www.lirelasociete.com/evenement-journee-du-livre-politique">32ème journée du livre politique</a> à l'Assemblée Nationale (Paris), <span class="highlight">le 25 mars.</span><br> Journée de tables rondes en présence d'élus ou ex-élus, sur le sujet «Réseaux sociaux : alliés ou ennemis de la démocratie ?». Vous pourrez y trouver Vincent.</li>
|
||||
<li role="none"><a href="http://perso.ens-lyon.fr/laurent.lefevre/greendayslyon2023/">Green Days</a> à l'ENS (Lyon), <span class="highlight">le 27 et 28 mars.</span> (Inscription obligatoire, évènement académique). En 2023, la problématique d'un numérique plus éco-responsable recouvre différentes facettes et de nombreux scientifiques adressent ces sujets dans leurs communautés respectives. Il est temps de se rencontrer et de mettre en commun nos forces de recherche pour amplifier les impacts des travaux et réduire les impacts énergétiques et environnementaux du numérique.
|
||||
<li role="none"><a href="https://www.agendadulibre.org/events/26938">Permanence du libre</a> au Café Citoyen (Lille), <span class="highlight">le 28 mars de 20h à 23h.</span><br>La permanence associative autour du Libre est une manifestation conviviale, ouverte à toutes et tous, organisée le dernier mardi de chaque mois par les associations Chtinux, Raoull & Deuxfleurs, avec l'amicale participation de Mycélium, CLX et Cliss XXI.</li>-->
|
||||
<!-- Avril -->
|
||||
<!--<li role="none"><a href="https://www.jdll.org/">Journées Du Logiciel Libre</a> à La Maison Pour Tous (Lyon), <span class="highlight">le 1er et 2 avril.</span><br> Deuxfleurs présentera une conférence intitulée "Entre-hébergement : envisagez l'auto-hébergement collectivement !" et sera présente sur l'évènement le week-end, entre autre sur le stand Hadoly. Vous pourriez y rencontrer Esther ou Quentin.</li>
|
||||
<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 4 avril à 19h</span>.<br> Un fois par mois nous organisons une réunion en ligne pas trop formalisé pour discuter de ce qui se passe. 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://www.bricologis.com/">Atelier Brico #2</a> à Bricologis (Vaulx-en-Velin), <span class="highlight">le 15 avril.</span><br> Deuxfleurs organise un atelier à Bricologis à Vaulx-en-Velin pour découvrir comment démonter un ordinateur, ses composants, et que faire pour le faire durer plus longtemps. Contactez Bricologis directement pour vous inscrire en amont.</li>-->
|
||||
<!-- Mai -->
|
||||
<!--<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 mai à 19h</span>.<br> Un 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://lerize.villeurbanne.fr/agenda/tisser-la-toile-du-web-avec-des-chatons_040523/">Tisser la toile du web avec des CHATONS</a> au Rize (Villeurbane), <span class="highlight">le 4 mai de 18h30 à 20h30</span>.<br> Et si plutôt que de dépendre des quelques silos des géants du numérique nous revenions à un réseau internet décentralisé et résilient ? Si nous imaginions une AMAP du numérique, humaine, locale, libre et éthique ? C’est possible grâce aux CHATONS, un collectif d’hébergeurs propulsé par l’association Framasoft depuis 2016 !</li>
|
||||
<li role="none"><a href="https://www.agendadulibre.org/events/27478">Permanence associative autour du Libre</a> à Lille, <span class="highlight">le 31 mai à 20h</span>.<br>
|
||||
La permanence associative autour du Libre est une manifestation conviviale, ouverte à toutes et tous, organisée le dernier mardi de chaque mois par les associations Chtinux, Raoull & Deuxfleurs, avec l'amicale participation de Mycélium, CLX et Cliss XXI. Rejoignez-nous au Café Citoyen !-->
|
||||
<!-- Juin -->
|
||||
<!--<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 6 juin à 19h</span>.<br> Un 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://programme.passageenseine.fr/">Pas Sage En Seine</a> à la Médiathèque Aragon (Choisy-le-Roi), <span class="highlight">du 15 au 17 juin</span>.<br> Le festival Pas Sage En seine est un rendez-vous annuel de la région parisienne. Lieu incontournable du milieu hacker à ses débuts, il a toujours eu pour vocation d’amener les citoyens de tous horizons à se réapproprier la société en bidouillant le système. Vincent y présentera comment "Surmonter les difficultés de l’auto-hébergement ensemble avec Garage".</li>
|
||||
<li role="none"><a href="https://www.maison-environnement.fr/desconnexions-une-journee-pour-aborder-en-famille-ou-entre-ami-es-les-enjeux-du-numerique-a-la-maison-de-lenvironnement-le-samedi-17-juin/">De(s)connexions</a> à la Maison de l'Environnement (Lyon), <span class="highlight">le 17 juin de 10h à 18h</span>.<br> Une journée pour aborder les enjeux et impacts, positifs et négatifs, du numérique ! Quentin y proposera une animation "technocritique".</li>
|
||||
<li role="none"><a href="#">Barcamp Interne</a> en Auvergne, <span class="highlight">le 24 et 25 juin</span>.<br> Les membres de Deuxfleurs prennent le temps de se retrouver et de discuter de l'association.</li>-->
|
||||
<!-- Septembre -->
|
||||
<!--<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 septembre à 19h</span>.<br> Un 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://www.agendamilitant.org/Affaire-du-8-decembre-antiterrorisme-et-criminalisation-du-chiffrement.html">Soirée affaire du «8 décembre» </a> à la bourse du travail à Paris, <span class="highlight"> le 25 septembre à 19h00</span>.<br>Soirée de discussion autour de la criminalisation du chiffrement à l’œuvre dans l’affaire du «8 décembre», en présence de la Quadrature du Net, N0thing2Hide, le SNJ, et les avocat·es concernés. Vous pourrez y trouver Vincent.</li>
|
||||
<li role="none"><a href="https://www.agendadulibre.org/events/28118">Permanence associative autour du Libre</a> au Café Citoyen à Lille, <span class="highlight">le 26 septembre à 20h00</span>.<br>La permanence associative autour du Libre est une manifestation conviviale, ouverte à toutes et tous, organisée le dernier mardi de chaque mois par les associations Chtinux, Raoull et Deuxfleurs, avec l'amicale participation de Mycélium, CLX et Cliss XXI. Vous pourrez y croiser Adrien.</li>
|
||||
<li role="none"><a href="https://www.agendadulibre.org/events/28178">Quadrapéro</a> au Garage de la Quadrature de Net, <span class="highlight">le 29 septembre à 19h00</span>.<br>Apéritif convivial pour discuter des divers enjeux en cours autour des droits et libertés numériques, en présence de membres de la Quadrature du Net et de bien autres intéressés. Vous y verrez Vincent.</li>
|
||||
<li role="none"><a href="https://venissieux.fr/blog/agenda/le-grand-rendez-vous/">Grand RDV</a> Salle Irène Joliot-Curie à Vénissieux, <span class="highlight">le 30 septembre à 9h00</span>.<br>Nous y tiendrons un stand Deuxfleurs sur le "numérique durable" où nous parlerons d'obsolescence dans le numérique et des solutions qu'on explore. Vous y verrez Quentin et Léa.</li>-->
|
||||
<!-- Octobre -->
|
||||
<!-- <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 3 octobre à 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://forum.chatons.org/t/assemblee-constituante-du-14-10-23-a-paris-vincennes-objet-gouvernance-moderation-continuite/5163">Assemblée pour les CHATONS</a> à Paris VIII, <span class="highlight">le 14 octobre à 9h</span>.<br> (Réservé en priorité aux CHATONS) Nous serons à Paris pour discuter de l'avenir du collectif le temps d'une journée.</li> -->
|
||||
<!-- <li role="none"><a href="https://www.agendadulibre.org/events/28119">Permanence associative autour du Libre</a> au Café Citoyen à Lille, <span class="highlight">le 31 octobre à 20h00</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.</li> -->
|
||||
|
||||
<!-- Novembre 2023 -->
|
||||
<!-- <li role="none"><a href="https://www.agendadulibre.org/events/28442">Quadrapéro</a> au Garage de la Quadrature de Net, <span class="highlight">le 3 novembre à 19h00</span>. <br>Apéritif convivial pour discuter des divers enjeux en cours autour des droits et libertés numériques, en présence de membres de la Quadrature du Net et de bien autres intéressés. Vous y verrez Vincent.</li> -->
|
||||
<!-- <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 7 novembre à 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://capitoledulibre.org/">Capitole du Libre</a> à l'ENSEEIHT (Toulouse), <span class="highlight">le 18 et 19 novembre</span>. <br>Conférence annuelle dédiée au logiciel libre et à sa communauté, ouverte à tout public, et ceci gratuitement. N'hésitez pas à venir discuter avec Vincent.</li> -->
|
||||
<!-- <li role="none"><a href="https://jitsi.deuxfleurs.fr/infra">Réunion mensuelle d'infrastructure</a> en ligne, <span class="highlight">le 22 novembre à 19h00</span>. <br>Point mensuel en visioconférence où l'on aborde toutes les questions techniques qui méritent notre attention, concernant notre infrastructure ou nos services.</li> -->
|
||||
<!-- <li role="none"><a href="https://www.agendadulibre.org/events/28120">Permanence associative autour du Libre</a> au Café Citoyen à Lille, <span class="highlight">le 28 novembre à 20h00</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.</li> -->
|
||||
|
||||
<!-- Décembre 2023 -->
|
||||
<!-- <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 décembre à 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://jitsi.deuxfleurs.fr/infra">Réunion mensuelle d'infrastructure</a> en ligne, <span class="highlight">le 20 décembre à 20h00</span>. <br>Point mensuel en visioconférence où l'on aborde toutes les questions techniques qui méritent notre attention, concernant notre infrastructure ou nos services.</li> -->
|
||||
<!-- <li role="none"><a href="https://events.ccc.de/congress/2023/infos/startpage.html">37C3</a> à Hambourg, <span class="highlight">du 27 au 30 décembre</span>. <br>Rendez-vous annuel européen des communautés de l'activisme numérique et des milieux hackers, le Chaos Communication Congress est un rassemblement d'envergure. Vous pourrez y voir Adrien, Boris, Zorun, Vincent et bien d'autres.</li> -->
|
||||
|
||||
|
||||
<!-- Janvier 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 9 janvier 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://www.agendadulibre.org/events/29139">Quadrapéro</a>, au Garage de la Quadrature du Net à Paris, <span class="highlight">le 19 janvier 2024 à 19h00</span>.<br>Apéritif convivial pour discuter des divers enjeux en cours autour des droits et libertés numériques, en présence de membres de la Quadrature du Net et de bien autres intéressés. Vous y verrez Vincent.</li>
|
||||
<li role="none"><a href="https://jitsi.deuxfleurs.fr/infra">Réunion mensuelle d'infrastructure</a> en ligne, <span class="highlight">le 24 janvier 2024 à 20h00</span>.<br>Point mensuel en visioconférence où l'on aborde toutes les questions techniques qui méritent notre attention, concernant notre infrastructure ou nos services.</li>
|
||||
<li role="none"><a href="#">Permanence associative autour du Libre</a> au Café Citoyen à Lille, <span class="highlight">le 25 janvier 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.</li>
|
||||
<li role="none"><a href="https://jitsi.deuxfleurs.fr/ag2024">Assemblée générale ordinaire</a> en ligne, <span class="highlight">le 28 janvier 2024 à 15h00</span>.<br>L'association Deuxfleurs organise sa cinquième assemblée générale. Divers sujets seront abordés, avec notamment l'élection du nouveau bureau pour un an. Vous pourrez y voir tous les membres ou presque.
|
||||
<!-- Février 2024 -->
|
||||
<li role="none"><a href="https://journee-ecoconception-numerique.fr/">Journée de l'écoconception numérique</a> à Paris, <span class="highlight">le 1er février 2024</span>.<br> Pour rassembler la communauté des professionnels du numérique autour de l'écoconception numérique. Quentin y sera.</li>
|
||||
<li role="none"><a href="https://fosdem.org/2024/">FOSDEM</a> à Bruxelles, <span class="highlight">les 3 et 4 février 2024</span>.<br>Pas moins de 7 membres de Deuxfleurs seront sur place, et il y aura 3 présentations de membres de Deuxfleurs : sur <a href="https://fosdem.org/2024/schedule/event/fosdem-2024-3009-advances-in-garage-the-low-tech-storage-platform-for-geo-distributed-clusters/">Garage</a>, <a href="https://fosdem.org/2024/schedule/event/fosdem-2024-2642--servers-aerogramme-a-multi-region-imap-server/">Aérogramme</a>, et <a href="https://fosdem.org/2024/schedule/event/fosdem-2024-3011-a-microkernel-based-orchestrator-for-distributed-internet-services-/">l'orchestration basée sur les microkernels</a>.</li>
|
||||
<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 6 février 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://jitsi.deuxfleurs.fr/infra">Réunion mensuelle d'infrastructure</a> en ligne, <span class="highlight">le 21 février 2024 à 20h00</span>.<br>Point mensuel en visioconférence où l'on aborde toutes les questions techniques qui méritent notre attention, concernant notre infrastructure ou nos services.</li>
|
||||
<li role="none"><a href="#">Permanence associative autour du Libre</a> au Café Citoyen à Lille, <span class="highlight">le 27 février 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.</li>
|
||||
<!-- 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="https://jitsi.deuxfleurs.fr/infra">Réunion mensuelle d'infrastructure</a> en ligne, <span class="highlight">le 17 avril 2024 à 20h00</span>.<br>Point mensuel en visioconférence où l'on aborde toutes les questions techniques qui méritent notre attention, concernant notre infrastructure ou nos services.</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.</li>
|
||||
|
||||
|
||||
<!-- Mai 2024 -->
|
||||
<li><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 7 mai 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><a href="https://jitsi.deuxfleurs.fr/infra">Réunion mensuelle d'infrastructure</a> en ligne, <span class="highlight">le 22 mai 2024 à 20h00</span>.<br>Point mensuel en visioconférence où l'on aborde toutes les questions techniques qui méritent notre attention, concernant notre infrastructure ou nos services.</li>
|
||||
<li><a href="https://cis.cnrs.fr/netgouv24/">#NetGouv24</a> à Paris, <span class="highlight">le 29 mai 2024</span>.<br>Première conférence annuelle du groupe de travail Gouvernance et Régulation d'Internet. L'ensemble de la communauté scientifique intéressée par ces sujets s'y retrouvera pour une journée de présentations et de discussion.</li>
|
||||
<li><a href="https://passageenseine.fr/">Pas Sage en Seine</a> à Choisy-le-Roi, <span class="highlight">le 31 mai, 1 et 2 juin</span>.<br>Festival annuel gratuit dédié au logiciel libre. De nombreuses présentations sur des sujets techniques ou non y sont faites.</li>
|
||||
<!-- Juin 2024 -->
|
||||
<li><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 4 juin 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><a href="https://jitsi.deuxfleurs.fr/infra">Réunion d'infrastructure</a> en ligne, <span class="highlight">le 5 juin 2024 à 19h15</span>.<br>Point en visioconférence sur les nouveaux sites géographiques à mettre en place pour pouvoir mieux résister aux pannes.</li>
|
||||
<li><a href="https://jitsi.deuxfleurs.fr/infra">Réunion mensuelle d'infrastructure</a> en ligne, <span class="highlight">le 19 juin 2024 à 20h00</span>.<br>Point mensuel en visioconférence où l'on aborde toutes les questions techniques qui méritent notre attention, concernant notre infrastructure ou nos services.</li>
|
||||
<li><em>Barcamp Interne</em> en Auvergne, <span class="highlight">les 21, 22 et 23 juin</span>.<br> Les membres de Deuxfleurs prennent le temps de se retrouver et de discuter de l'association.</li>
|
||||
<!-- Juillet 2024 -->
|
||||
<li><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 juillet 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><a href="https://www.agendadulibre.org/events/30240">Quadrapéro</a>, au Garage de la Quadrature du Net à Paris, <span class="highlight">le 5 juillet 2024 à 19h00</span>.<br>Apéritif convivial pour discuter des divers enjeux en cours autour des droits et libertés numériques, en présence de membres de la Quadrature du Net et de bien autres intéressés. Vous y verrez Vincent.</li>
|
||||
<li><a href="https://bbb.paquerette.eu/b/dom-67q-irl-nfc">Réunion mensuelle du collectif CHATONS</a> en ligne, <span class="highlight">le 9 juillet 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>, à laquelle nous participons.</li>
|
||||
<li><a href="https://libreto.sans-nuage.fr/campchatons2024/">Camp CHATONS</a> à Sévérac, <span class="highlight">du 11 au 15 juillet</span>.<br>Chaque année, les membres du collectif CHATONS se réunissent en présentiel pour aborder les grands sujets à son propos et partager des moments conviviaux. Vous y verrez Adrien.</li>
|
||||
<li><a href="#">Permanence associative autour du Libre</a> au Café Citoyen à Lille, <span class="highlight">le 30 juillet 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.</li>
|
||||
|
||||
<!-- Août 2024 -->
|
||||
<li><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 6 août 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>
|
||||
<!-- Septembre 2024 -->
|
||||
<li><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 3 septembre 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><a href="https://www.agendadulibre.org/events/30486">Numérique libre à la Braderie de Lille</a> au village associatif du Café Citoyen, <span class="highlight">du 14 septembre 2024 à 10h au 15 à 18h</span>.<br>Le spot le plus cool durant la Braderie de Lille, c'est le Café Citoyen (ses spectacles qualitatifs y surpassent de loin les articles vendus trop chers par les brocanteurs que vous trouverez ailleurs). Le spot le plus cool au Café Citoyen, c'est son village associatif. Mais alors la cerise sur le gâteau, c'est sans doute le stand sur les libertés numériques tenu par les collectifs de Chtinux (Raoull, Deuxfleurs, Mycélium, CLX et Cliss XXI...). Venez dire bonjour, vous serez bien reçu⋅e !</li>
|
||||
<li><a href="https://fete.humanite.fr/">Fête de l'Humanité</a> à la base 217 à Bretigny-sur-Orge, <span class="highlight">le 14 et 15 septembre 2024</span>.<br>Plus qu'un festival de musique, la fête de l'Humanité est un rendez-vous important des forces militantes sur un peu tous les sujets. Si vous souhaitez y rencontrer Vincent, n'hésitez pas à nous contacter par courriel auparavant pour que l'on s'organise et que l'on ne se rate pas.</li>
|
||||
<li><a href="https://www.agendadulibre.org/events/30485">Permanence associative autour du Libre</a> au Café Citoyen à Lille, <span class="highlight">le 24 septembre 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 de Chtinux (Raoull, Deuxfleurs, Mycélium, CLX, Cliss XXI...).</li>
|
BIN
static/favicon.ico
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
static/img/deuxfleurs-common-ratio.jpg
Normal file
After Width: | Height: | Size: 228 KiB |
BIN
static/img/deuxfleurs-rect.jpg
Normal file
After Width: | Height: | Size: 230 KiB |
BIN
static/img/deuxfleurs-square.jpg
Normal file
After Width: | Height: | Size: 247 KiB |
BIN
static/img/favicon.ico
Normal file
After Width: | Height: | Size: 15 KiB |
1395
static/index.html
Normal file
13
static/r/rdv23
Normal file
|
@ -0,0 +1,13 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8"/>
|
||||
<title>Redirection automatique en HTML</title>
|
||||
<meta http-equiv="refresh" content="0; URL=https://guide.deuxfleurs.fr/formations/rdv-2023/">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<p>Cette page est une redirection vers : <a href="https://guide.deuxfleurs.fr/formations/rdv-2023/">Vénissieux Grand RDV 2023</a></p>
|
||||
</body>
|
||||
|
||||
</html>
|
BIN
static/ronce.webp
Normal file
After Width: | Height: | Size: 416 KiB |
47
static/script-bon.js
Normal file
|
@ -0,0 +1,47 @@
|
|||
// dictionary to keep track of frame count for each animation
|
||||
let frameCounts = {};
|
||||
|
||||
function animate(id, delay) {
|
||||
|
||||
// get the container and frames for the amination
|
||||
const container = document.getElementById(id);
|
||||
const frames = container.children;
|
||||
|
||||
// set up the frame counter
|
||||
frameCounts[id] = 0;
|
||||
|
||||
// hide all frames except for the first
|
||||
frames[0].style.display = "flex";
|
||||
for (let i = 1; i < frames.length; i++) {
|
||||
frames[i].style.display = "none";
|
||||
}
|
||||
|
||||
// start the animation
|
||||
const interval = setInterval(updateAnimation, delay, id, frames, frames.length);
|
||||
|
||||
}
|
||||
|
||||
function updateAnimation(id, frames, totalFrames) {
|
||||
|
||||
// increment the frame counter for the given id
|
||||
frameCounts[id] = (frameCounts[id] + 1) % totalFrames;
|
||||
|
||||
// show the next frame
|
||||
frames[frameCounts[id]].style.display = "flex";
|
||||
|
||||
// hide the previous frame
|
||||
if (frameCounts[id] == 0) {
|
||||
frames[totalFrames - 1].style.display = "none";
|
||||
} else {
|
||||
frames[frameCounts[id] - 1].style.display = "none";
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// If the user have a setting on their device to minimize the amount of non-essential motion
|
||||
const preferReduceMotion = window.matchMedia("(prefers-reduced-motion)").matches;
|
||||
|
||||
animate("illustration-accueil", preferReduceMotion ? 1500 : 500); // Reduce framerate if use preference is to reduce motion
|
||||
animate("rennes", preferReduceMotion ? 3000 : 1000); // Reduce framerate if use preference is to reduce motion
|
||||
animate("orsay", preferReduceMotion ? 4000 : 2000); // Reduce framerate if use preference is to reduce motion
|
||||
animate("parterre", 1500);
|