commit 0609bcceb543d4aac5f2d16a399702fc35b67e6a Author: Cédric FAMIBELLE-PRONZOLA Date: Wed Nov 5 17:32:17 2025 +0400 first commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8976478 --- /dev/null +++ b/.gitignore @@ -0,0 +1,7 @@ +node_modules/ +_site/ +.DS_Store +*.log +.env +.vscode/ +.idea/ diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..ef4a76d --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,89 @@ +# Changelog + +## Version 2.0.0 - Migration vers 11ty (2025-11-05) + +### Nouvelle architecture +- ✅ Migration complète de PHP vers 11ty (Eleventy) +- ✅ Structure modulaire avec templates Nunjucks +- ✅ Données centralisées en fichiers JSON +- ✅ Build statique optimisé + +### Nouvelle charte graphique +- ✅ Charte basée sur les couleurs officielles du logo OKI +- ✅ Palette de couleurs : + - Or OKI (#E8A625) - couleur principale + - Vert OKI (#00A854) - services Fédiverse + - Rouge OKI (#ED1C4C) - accents + - Noir OKI (#000000) - arrière-plans +- ✅ Logo intégré dans la navigation +- ✅ Favicon ajouté + +### Design & UX +- ✅ Fond noir élégant au lieu du bleu +- ✅ Accents or pour les titres et boutons +- ✅ Bordures et effets or pour cohérence visuelle +- ✅ Cartes de services avec bordures vertes +- ✅ Projets web avec accents rouges +- ✅ Footer avec bordure dorée + +### Fonctionnalités conservées +- ✅ Toutes les sections de la V1 +- ✅ Animations et effets interactifs +- ✅ Navigation responsive +- ✅ Easter egg Konami Code +- ✅ Support des dons (Stripe) +- ✅ Services d'hébergement + +### Améliorations techniques +- ✅ Temps de build ultra-rapide (~60ms) +- ✅ Hot reload pour le développement +- ✅ SEO optimisé +- ✅ Performance améliorée +- ✅ Code maintenable et modulaire +- ✅ Licence libre AGPL-V3 + +### Fichiers principaux +- `eleventy.config.js` - Configuration 11ty +- `src/_data/` - Données du site (services, projets, valeurs, etc.) +- `src/_includes/layouts/` - Templates de mise en page +- `src/_includes/partials/` - Composants réutilisables +- `src/assets/` - CSS, JS, images + +### Migration depuis V1 +La V1 utilisait PHP et Bootstrap. La V2 utilise 11ty avec : +- CSS personnalisé (pas de framework) +- JavaScript Vanilla +- Structure de fichiers organisée +- Build statique déployable partout + +### Services Fédiverse +- ✅ GADE (PeerTube) - Alternative libre à YouTube +- ✅ BOKANTAJ (Pleroma + Soapbox) - Alternative libre à X/Twitter +- ✅ MIZIK (Funkwhale) - Alternative libre à SoundCloud +- ✅ KUTE (Castopod) - Plateforme libre de podcasting + +### Projets Web +- ✅ FEDIVERSE OKI - Portail d'accès à tous nos services Fédiverse +- ✅ OKI.RE - Transcriptions et traductions de productions musicales +- ✅ NUVEL.NU - Actualités multilingues de nos régions +- ✅ JWE.OVH - Jeu cartographique éducatif et ludique +- ✅ GONG.GP - Documents historiques du GONG +- ✅ Tous les projets sont cliquables avec liens directs + +### Partenaires +- ✅ Joukawouvè - Créateur de contenu sur GADE +- ✅ Aktivist Vybz #AKV - Émission engagée sur GADE +- ✅ Section dédiée avec logos et descriptions +- ✅ Lien dans la navigation +- ✅ Appel à devenir partenaire + +### Contenu juridique +- ✅ Page de mentions légales complète +- ✅ Conformité RGPD +- ✅ Licence AGPL-V3 intégrée +- ✅ Liens Stripe configurés (dons ponctuels et mensuels) +- ✅ Liens Liberapay et Ko-fi ajoutés + +### TODO +- [ ] Ajouter plus d'images si nécessaire +- [ ] Configurer le déploiement automatique diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..cc2d173 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,179 @@ +# Guide de contribution + +Merci de votre intérêt pour contribuer au site de l'Organisation Ka Internationale ! + +## Ajouter du contenu + +### Ajouter un service Fédiverse + +Éditez `src/_data/services.json` : + +```json +{ + "name": "NOM_DU_SERVICE", + "icon": "🎯", + "platform": "Nom de la plateforme", + "description": "Description du service", + "url": "https://service.o-k-i.net/", + "linkText": "Accéder à SERVICE" +} +``` + +### Ajouter un projet web + +Éditez `src/_data/projects.json` : + +```json +{ + "name": "NOM.PROJET", + "icon": "📱", + "domain": "nom.projet", + "description": "Description du projet" +} +``` + +### Ajouter une valeur + +Éditez `src/_data/values.json` : + +```json +{ + "icon": "🌟", + "title": "Titre", + "description": "Description de la valeur" +} +``` + +### Modifier la navigation + +Éditez `src/_data/navigation.json` : + +```json +{ + "text": "Texte du lien", + "url": "#section", + "external": false +} +``` + +Pour un lien externe, mettez `"external": true`. + +### Ajouter une section de contact + +Éditez `src/_data/contact.json` : + +```json +{ + "title": "🔗 Titre de la section", + "links": [ + { + "text": "Nom du lien", + "url": "https://example.com" + } + ] +} +``` + +## Modifier les styles + +Les styles sont dans `src/assets/css/styles.css`. + +### Variables CSS disponibles + +```css +--bleu-ocean: #003566; +--jaune-soleil: #FFB700; +--rouge-resistance: #D62828; +--vert-terre: #2A9134; +--orange-communaute: #FB8500; +--noir-profond: #0A0908; +--blanc-lumiere: #F7F7F2; +--violet-fedi: #6364FF; +``` + +## Créer une nouvelle page + +1. Créez un fichier `.njk` dans `src/` : + +```njk +--- +layout: layouts/base.njk +title: Titre de la page +description: Description pour le SEO +--- + +
+

{{ title }}

+

Contenu de votre page

+
+``` + +2. Ajoutez le lien dans `src/_data/navigation.json` si nécessaire + +3. Reconstruisez le site : `npm run build` + +## Modifier un partial + +Les partials sont dans `src/_includes/partials/` : + +- `nav.njk` - Navigation +- `hero.njk` - Section hero (accueil) +- `fediverse.njk` - Services Fédiverse +- `projects.njk` - Projets web +- `mission.njk` - Mission et valeurs +- `hosting.njk` - Services d'hébergement +- `support.njk` - Section dons +- `contact.njk` - Informations de contact +- `footer.njk` - Pied de page + +## Workflow de développement + +1. Créez une branche pour votre fonctionnalité : + ```bash + git checkout -b feature/ma-fonctionnalite + ``` + +2. Faites vos modifications + +3. Testez localement : + ```bash + npm start + ``` + +4. Buildez pour vérifier : + ```bash + npm run build + ``` + +5. Commitez vos changements : + ```bash + git add . + git commit -m "Description de vos changements" + ``` + +6. Poussez et créez une pull request : + ```bash + git push origin feature/ma-fonctionnalite + ``` + +## Standards de code + +### HTML/Nunjucks +- Indentation : 4 espaces +- Toujours fermer les balises +- Attributs entre guillemets doubles + +### CSS +- Indentation : 4 espaces +- Utiliser les variables CSS quand possible +- Mobile-first pour le responsive + +### JavaScript +- Indentation : 4 espaces +- Vanilla JS (pas de framework) +- Commentaires en français +- Gestion des erreurs + +## Questions ? + +Contactez-nous à kontak@o-k-i.net ou ouvrez une issue sur Codeberg. diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..be3f7b2 --- /dev/null +++ b/LICENSE @@ -0,0 +1,661 @@ + GNU AFFERO GENERAL PUBLIC LICENSE + Version 3, 19 November 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + 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 +sue 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. + + + Copyright (C) + + 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 . + +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 +. diff --git a/README.md b/README.md new file mode 100644 index 0000000..7fa3454 --- /dev/null +++ b/README.md @@ -0,0 +1,151 @@ +# o-k-i.net V2 + +Site web officiel de ** ORGANISATION KA INTERNATIONALE (OKI)** - Version 2 construite avec 11ty (Eleventy). + +## À propos + +ORGANISATION KA INTERNATIONALE est une association à but non lucratif dédiée à la promotion de nos langues et au traitement de l'actualité, proposant des alternatives libres aux GAFAM. + +## Technologies + +- **11ty (Eleventy)** - Générateur de site statique +- **Nunjucks** - Moteur de templates +- **CSS personnalisé** - Sans framework +- **JavaScript Vanilla** - Interactions et animations + +## Structure du projet + +``` +o-k-i.net-V2/ +├── src/ +│ ├── _data/ # Données JSON (services, projets, valeurs, etc.) +│ ├── _includes/ +│ │ ├── layouts/ # Layouts de base +│ │ └── partials/ # Composants réutilisables +│ ├── assets/ +│ │ ├── css/ # Feuilles de style +│ │ ├── js/ # Scripts JavaScript +│ │ └── images/ # Images +│ └── index.njk # Page d'accueil +├── _site/ # Site généré (git ignoré) +├── eleventy.config.js # Configuration 11ty +└── package.json +``` + +## Installation + +```bash +# Cloner le dépôt +git clone https://codeberg.org/OKI/o-k-i.net-V2.git +cd o-k-i.net-V2 + +# Installer les dépendances +npm install +``` + +## Développement + +```bash +# Lancer le serveur de développement avec hot reload +npm start + +# Le site sera disponible sur http://localhost:8080 +``` + +## Build de production + +```bash +# Générer le site statique +npm run build + +# Les fichiers seront dans le dossier _site/ +``` + +## Personnalisation + +### Modifier les données + +Les données du site sont organisées dans `src/_data/` : + +- `site.json` - Informations générales du site +- `services.json` - Services Fédiverse (KUTE, GADE, BOKANTAJ, MIZIK) +- `projects.json` - Projets web (FEDIVERSE OKI, OKI.RE, NUVEL.NU, JWE.OVH, GONG.GP) +- `partners.json` - Partenaires (Joukawouvè, Aktivist Vybz #AKV) +- `values.json` - Valeurs de l'organisation +- `contact.json` - Informations de contact +- `navigation.json` - Liens de navigation + +### Modifier les styles + +Les styles sont dans `src/assets/css/styles.css`. La charte graphique est basée sur les couleurs du logo officiel d'OKI : + +```css +:root { + /* Couleurs du logo OKI */ + --or-oki: #E8A625; /* Orange/Or du logo */ + --noir-oki: #000000; /* Noir du logo */ + --vert-oki: #00A854; /* Vert émeraude du logo */ + --rouge-oki: #ED1C4C; /* Rouge/Rose du logo */ + --blanc-creme: #F7F7F2; /* Blanc crème */ + + /* Couleurs dérivées pour le design */ + --noir-profond: #1A1A1A; + --gris-sombre: #2A2A2A; + --or-clair: #F5BD4F; + --vert-clair: #00C569; + --rouge-clair: #FF2D5F; +} +``` + +## Fonctionnalités + +- ✅ Design responsive et moderne +- ✅ Animations fluides +- ✅ Navigation mobile +- ✅ Scroll smooth +- ✅ Effets hover interactifs +- ✅ Easter egg Konami Code +- ✅ Performance optimisée +- ✅ SEO friendly +- ✅ Logo et favicon intégrés +- ✅ Charte graphique basée sur le logo officiel + +## Sections du site + +1. **Hero** - Présentation de l'organisation +2. **Fédiverse** - Services alternatifs (PeerTube, Pleroma, Funkwhale, Castopod) +3. **Projets Web** - Projets de l'organisation +4. **Mission** - Valeurs et objectifs +5. **Hébergement** - Services d'hébergement proposés +6. **Support** - Options de dons +7. **Partenaires** - Nos partenaires médias et créateurs +8. **Contact** - Liens vers réseaux sociaux et plateformes + +## Contribution + +Les contributions sont les bienvenues ! N'hésitez pas à ouvrir une issue ou une pull request sur [Codeberg](https://codeberg.org/OKI/o-k-i.net-V2). + +## Licence + +Ce projet est sous licence **GNU Affero General Public License v3.0 (AGPL-V3)**. + +La licence AGPL-V3 est une licence de logiciel libre qui garantit : +- La liberté d'utiliser le logiciel à toute fin +- La liberté d'étudier et de modifier le code source +- La liberté de redistribuer des copies +- L'obligation de partager les modifications sous la même licence +- L'obligation de fournir le code source aux utilisateurs du service en ligne + +Voir le fichier [LICENSE](LICENSE) pour plus de détails ou consultez : https://www.gnu.org/licenses/agpl-3.0.html + +© 2024 ORGANISATION KA INTERNATIONALE + +## Liens + +- 🌐 [Site web](https://o-k-i.net) +- 📺 [GADE (PeerTube)](https://gade.o-k-i.net/) +- 🐦 [BOKANTAJ (Pleroma)](https://bokantaj.o-k-i.net/) +- 🎵 [MIZIK (Funkwhale)](https://mizik.o-k-i.net/library) +- 🎙️ [KUTE (Castopod)](https://kute.o-k-i.net/) +- 💻 [Codeberg](https://codeberg.org/OKI) +- 📧 kontak@o-k-i.net diff --git a/eleventy.config.js b/eleventy.config.js new file mode 100644 index 0000000..9ec70e5 --- /dev/null +++ b/eleventy.config.js @@ -0,0 +1,27 @@ +module.exports = function(eleventyConfig) { + // Copy assets folders to output + eleventyConfig.addPassthroughCopy("src/assets"); + + // Watch CSS files for changes + eleventyConfig.addWatchTarget("src/assets/css/"); + + // Watch JS files for changes + eleventyConfig.addWatchTarget("src/assets/js/"); + + // Configure browser sync to reload on CSS changes + eleventyConfig.setBrowserSyncConfig({ + files: ['_site/assets/css/**/*.css', '_site/assets/js/**/*.js'] + }); + + return { + dir: { + input: "src", + output: "_site", + includes: "_includes", + data: "_data" + }, + templateFormats: ["html", "md", "njk", "liquid"], + htmlTemplateEngine: "njk", + markdownTemplateEngine: "njk" + }; +}; diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..756a1ae --- /dev/null +++ b/package-lock.json @@ -0,0 +1,1700 @@ +{ + "name": "o-k-i.net-v2", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "o-k-i.net-v2", + "version": "1.0.0", + "license": "ISC", + "devDependencies": { + "@11ty/eleventy": "^3.1.2" + } + }, + "node_modules/@11ty/dependency-tree": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@11ty/dependency-tree/-/dependency-tree-4.0.0.tgz", + "integrity": "sha512-PTOnwM8Xt+GdJmwRKg4pZ8EKAgGoK7pedZBfNSOChXu8MYk2FdEsxdJYecX4t62owpGw3xK60q9TQv/5JI59jw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@11ty/eleventy-utils": "^2.0.1" + } + }, + "node_modules/@11ty/dependency-tree-esm": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@11ty/dependency-tree-esm/-/dependency-tree-esm-2.0.2.tgz", + "integrity": "sha512-kSTmXneksQLBhwsfqjxiSi9ecRKENXmRtT5RG95rFoWSI8kkwLcGlYpoXsPkCD9uQwSU1rmDzXBDnqUJlWaIyw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@11ty/eleventy-utils": "^2.0.7", + "acorn": "^8.15.0", + "dependency-graph": "^1.0.0", + "normalize-path": "^3.0.0" + } + }, + "node_modules/@11ty/eleventy": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@11ty/eleventy/-/eleventy-3.1.2.tgz", + "integrity": "sha512-IcsDlbXnBf8cHzbM1YBv3JcTyLB35EK88QexmVyFdVJVgUU6bh9g687rpxryJirHzo06PuwnYaEEdVZQfIgRGg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@11ty/dependency-tree": "^4.0.0", + "@11ty/dependency-tree-esm": "^2.0.0", + "@11ty/eleventy-dev-server": "^2.0.8", + "@11ty/eleventy-plugin-bundle": "^3.0.6", + "@11ty/eleventy-utils": "^2.0.7", + "@11ty/lodash-custom": "^4.17.21", + "@11ty/posthtml-urls": "^1.0.1", + "@11ty/recursive-copy": "^4.0.2", + "@sindresorhus/slugify": "^2.2.1", + "bcp-47-normalize": "^2.3.0", + "chokidar": "^3.6.0", + "debug": "^4.4.1", + "dependency-graph": "^1.0.0", + "entities": "^6.0.1", + "filesize": "^10.1.6", + "gray-matter": "^4.0.3", + "iso-639-1": "^3.1.5", + "js-yaml": "^4.1.0", + "kleur": "^4.1.5", + "liquidjs": "^10.21.1", + "luxon": "^3.6.1", + "markdown-it": "^14.1.0", + "minimist": "^1.2.8", + "moo": "^0.5.2", + "node-retrieve-globals": "^6.0.1", + "nunjucks": "^3.2.4", + "picomatch": "^4.0.2", + "please-upgrade-node": "^3.2.0", + "posthtml": "^0.16.6", + "posthtml-match-helper": "^2.0.3", + "semver": "^7.7.2", + "slugify": "^1.6.6", + "tinyglobby": "^0.2.14" + }, + "bin": { + "eleventy": "cmd.cjs" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/11ty" + } + }, + "node_modules/@11ty/eleventy-dev-server": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/@11ty/eleventy-dev-server/-/eleventy-dev-server-2.0.8.tgz", + "integrity": "sha512-15oC5M1DQlCaOMUq4limKRYmWiGecDaGwryr7fTE/oM9Ix8siqMvWi+I8VjsfrGr+iViDvWcH/TVI6D12d93mA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@11ty/eleventy-utils": "^2.0.1", + "chokidar": "^3.6.0", + "debug": "^4.4.0", + "finalhandler": "^1.3.1", + "mime": "^3.0.0", + "minimist": "^1.2.8", + "morphdom": "^2.7.4", + "please-upgrade-node": "^3.2.0", + "send": "^1.1.0", + "ssri": "^11.0.0", + "urlpattern-polyfill": "^10.0.0", + "ws": "^8.18.1" + }, + "bin": { + "eleventy-dev-server": "cmd.js" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/11ty" + } + }, + "node_modules/@11ty/eleventy-plugin-bundle": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/@11ty/eleventy-plugin-bundle/-/eleventy-plugin-bundle-3.0.7.tgz", + "integrity": "sha512-QK1tRFBhQdZASnYU8GMzpTdsMMFLVAkuU0gVVILqNyp09xJJZb81kAS3AFrNrwBCsgLxTdWHJ8N64+OTTsoKkA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@11ty/eleventy-utils": "^2.0.2", + "debug": "^4.4.0", + "posthtml-match-helper": "^2.0.3" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/11ty" + } + }, + "node_modules/@11ty/eleventy-utils": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/@11ty/eleventy-utils/-/eleventy-utils-2.0.7.tgz", + "integrity": "sha512-6QE+duqSQ0GY9rENXYb4iPR4AYGdrFpqnmi59tFp9VrleOl0QSh8VlBr2yd6dlhkdtj7904poZW5PvGr9cMiJQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/11ty" + } + }, + "node_modules/@11ty/lodash-custom": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/@11ty/lodash-custom/-/lodash-custom-4.17.21.tgz", + "integrity": "sha512-Mqt6im1xpb1Ykn3nbcCovWXK3ggywRJa+IXIdoz4wIIK+cvozADH63lexcuPpGS/gJ6/m2JxyyXDyupkMr5DHw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/11ty" + } + }, + "node_modules/@11ty/posthtml-urls": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@11ty/posthtml-urls/-/posthtml-urls-1.0.1.tgz", + "integrity": "sha512-6EFN/yYSxC/OzYXpq4gXDyDMlX/W+2MgCvvoxf11X1z76bqkqFJ8eep5RiBWfGT5j0323a1pwpelcJJdR46MCw==", + "dev": true, + "license": "MIT", + "dependencies": { + "evaluate-value": "^2.0.0", + "http-equiv-refresh": "^2.0.1", + "list-to-array": "^1.1.0", + "parse-srcset": "^1.0.2" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@11ty/recursive-copy": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@11ty/recursive-copy/-/recursive-copy-4.0.2.tgz", + "integrity": "sha512-174nFXxL/6KcYbLYpra+q3nDbfKxLxRTNVY1atq2M1pYYiPfHse++3IFNl8mjPFsd7y2qQjxLORzIjHMjL3NDQ==", + "dev": true, + "license": "ISC", + "dependencies": { + "errno": "^1.0.0", + "junk": "^3.1.0", + "maximatch": "^0.1.0", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/@sindresorhus/slugify": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@sindresorhus/slugify/-/slugify-2.2.1.tgz", + "integrity": "sha512-MkngSCRZ8JdSOCHRaYd+D01XhvU3Hjy6MGl06zhOk614hp9EOAp5gIkBeQg7wtmxpitU6eAL4kdiRMcJa2dlrw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@sindresorhus/transliterate": "^1.0.0", + "escape-string-regexp": "^5.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@sindresorhus/transliterate": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/transliterate/-/transliterate-1.6.0.tgz", + "integrity": "sha512-doH1gimEu3A46VX6aVxpHTeHrytJAG6HgdxntYnCFiIFHEM/ZGpG8KiZGBChchjQmG0XFIBL552kBTjVcMZXwQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "escape-string-regexp": "^5.0.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/a-sync-waterfall": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/a-sync-waterfall/-/a-sync-waterfall-1.0.1.tgz", + "integrity": "sha512-RYTOHHdWipFUliRFMCS4X2Yn2X8M87V/OpSqWzKKOGhzqyUxzyVmhHDH9sAvG+ZuQf/TAOFsLCpMw09I1ufUnA==", + "dev": true, + "license": "MIT" + }, + "node_modules/acorn": { + "version": "8.15.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.15.0.tgz", + "integrity": "sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==", + "dev": true, + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-walk": { + "version": "8.3.4", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.4.tgz", + "integrity": "sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==", + "dev": true, + "license": "MIT", + "dependencies": { + "acorn": "^8.11.0" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "license": "ISC", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/anymatch/node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true, + "license": "Python-2.0" + }, + "node_modules/array-differ": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-differ/-/array-differ-1.0.0.tgz", + "integrity": "sha512-LeZY+DZDRnvP7eMuQ6LHfCzUGxAAIViUBliK24P3hWXL6y4SortgR6Nim6xrkfSLlmH0+k+9NYNwVC2s53ZrYQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-union": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha512-Dxr6QJj/RdU/hCaBjOfxW+q6lyuVE6JFWIrAUpuOOhoJJoQ99cUn3igRaHVB5P9WrgFVN0FfArM3x0cueOU8ng==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-uniq": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha512-MNha4BWQ6JbwhFhj03YK552f7cb3AzoE8SzeljgChvL1dl3IcvggXVz1DilzySZkCja+CXuZbdW7yATchWn8/Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arrify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", + "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/asap": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==", + "dev": true, + "license": "MIT" + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/bcp-47": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/bcp-47/-/bcp-47-2.1.0.tgz", + "integrity": "sha512-9IIS3UPrvIa1Ej+lVDdDwO7zLehjqsaByECw0bu2RRGP73jALm6FYbzI5gWbgHLvNdkvfXB5YrSbocZdOS0c0w==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-alphabetical": "^2.0.0", + "is-alphanumerical": "^2.0.0", + "is-decimal": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/bcp-47-match": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/bcp-47-match/-/bcp-47-match-2.0.3.tgz", + "integrity": "sha512-JtTezzbAibu8G0R9op9zb3vcWZd9JF6M0xOYGPn0fNCd7wOpRB1mU2mH9T8gaBGbAAyIIVgB2G7xG0GP98zMAQ==", + "dev": true, + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/bcp-47-normalize": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/bcp-47-normalize/-/bcp-47-normalize-2.3.0.tgz", + "integrity": "sha512-8I/wfzqQvttUFz7HVJgIZ7+dj3vUaIyIxYXaTRP1YWoSDfzt6TUmxaKZeuXR62qBmYr+nvuWINFRl6pZ5DlN4Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "bcp-47": "^2.0.0", + "bcp-47-match": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/binary-extensions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", + "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "dev": true, + "license": "MIT", + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "dev": true, + "license": "MIT", + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/commander": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", + "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=14" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true, + "license": "MIT" + }, + "node_modules/debug": { + "version": "4.4.3", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz", + "integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/dependency-graph": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/dependency-graph/-/dependency-graph-1.0.0.tgz", + "integrity": "sha512-cW3gggJ28HZ/LExwxP2B++aiKxhJXMSIt9K48FOXQkm+vuG5gyatXnLsONRJdzO/7VfjDIiaOOa/bs4l464Lwg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/dom-serializer": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "dev": true, + "license": "MIT", + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "node_modules/dom-serializer/node_modules/entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "dev": true, + "license": "BSD-2-Clause", + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "license": "BSD-2-Clause" + }, + "node_modules/domhandler": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "domelementtype": "^2.2.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", + "dev": true, + "license": "MIT" + }, + "node_modules/encodeurl": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", + "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/entities": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/entities/-/entities-6.0.1.tgz", + "integrity": "sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/errno": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/errno/-/errno-1.0.0.tgz", + "integrity": "sha512-3zV5mFS1E8/1bPxt/B0xxzI1snsg3uSCIh6Zo1qKg6iMw93hzPANk9oBFzSFBFrwuVoQuE3rLoouAUfwOAj1wQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "prr": "~1.0.1" + }, + "bin": { + "errno": "cli.js" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "dev": true, + "license": "MIT" + }, + "node_modules/escape-string-regexp": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/esm-import-transformer": { + "version": "3.0.5", + "resolved": "https://registry.npmjs.org/esm-import-transformer/-/esm-import-transformer-3.0.5.tgz", + "integrity": "sha512-1GKLvfuMnnpI75l8c6sHoz0L3Z872xL5akGuBudgqTDPv4Vy6f2Ec7jEMKTxlqWl/3kSvNbHELeimJtnqgYniw==", + "dev": true, + "license": "MIT", + "dependencies": { + "acorn": "^8.15.0" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true, + "license": "BSD-2-Clause", + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/evaluate-value": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/evaluate-value/-/evaluate-value-2.0.0.tgz", + "integrity": "sha512-VonfiuDJc0z4sOO7W0Pd130VLsXN6vmBWZlrog1mCb/o7o/Nl5Lr25+Kj/nkCCAhG+zqeeGjxhkK9oHpkgTHhQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fdir": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.5.0.tgz", + "integrity": "sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "picomatch": "^3 || ^4" + }, + "peerDependenciesMeta": { + "picomatch": { + "optional": true + } + } + }, + "node_modules/filesize": { + "version": "10.1.6", + "resolved": "https://registry.npmjs.org/filesize/-/filesize-10.1.6.tgz", + "integrity": "sha512-sJslQKU2uM33qH5nqewAwVB2QgR6w1aMNsYUp3aN5rMRyXEwJGmZvaWzeJFNTOXWlHQyBFCWrdj3fV/fsTOX8w==", + "dev": true, + "license": "BSD-3-Clause", + "engines": { + "node": ">= 10.4.0" + } + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "dev": true, + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/finalhandler": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.1.tgz", + "integrity": "sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~2.0.0", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/finalhandler/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true, + "license": "MIT" + }, + "node_modules/fresh": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-2.0.0.tgz", + "integrity": "sha512-Rx/WycZ60HOaqLKAi6cHRKKI7zxWbJ31MhntmtwMoaTeF7XFH9hhBp8vITaMidfljRQ6eYWCKkaTK+ykVJHP2A==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/gray-matter": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/gray-matter/-/gray-matter-4.0.3.tgz", + "integrity": "sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "js-yaml": "^3.13.1", + "kind-of": "^6.0.2", + "section-matter": "^1.0.0", + "strip-bom-string": "^1.0.0" + }, + "engines": { + "node": ">=6.0" + } + }, + "node_modules/gray-matter/node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "license": "MIT", + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/gray-matter/node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "license": "MIT", + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/htmlparser2": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-7.2.0.tgz", + "integrity": "sha512-H7MImA4MS6cw7nbyURtLPO1Tms7C5H602LRETv95z1MxO/7CP7rDVROehUYeYBUYEON94NXXDEPmZuq+hX4sog==", + "dev": true, + "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "license": "MIT", + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.2", + "domutils": "^2.8.0", + "entities": "^3.0.1" + } + }, + "node_modules/htmlparser2/node_modules/entities": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/entities/-/entities-3.0.1.tgz", + "integrity": "sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/http-equiv-refresh": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/http-equiv-refresh/-/http-equiv-refresh-2.0.1.tgz", + "integrity": "sha512-XJpDL/MLkV3dKwLzHwr2dY05dYNfBNlyPu4STQ8WvKCFdc6vC5tPXuq28of663+gHVg03C+16pHHs/+FmmDjcw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true, + "license": "ISC" + }, + "node_modules/is-alphabetical": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-alphabetical/-/is-alphabetical-2.0.1.tgz", + "integrity": "sha512-FWyyY60MeTNyeSRpkM2Iry0G9hpr7/9kD40mD/cGQEuilcZYS4okz8SN2Q6rLCJ8gbCt6fN+rC+6tMGS99LaxQ==", + "dev": true, + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-alphanumerical": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-alphanumerical/-/is-alphanumerical-2.0.1.tgz", + "integrity": "sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-alphabetical": "^2.0.0", + "is-decimal": "^2.0.0" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "license": "MIT", + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-decimal": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-decimal/-/is-decimal-2.0.1.tgz", + "integrity": "sha512-AAB9hiomQs5DXWcRB1rqsxGUstbRroFOPPVAomNk/3XHR5JyEZChOyTWe2oayKnsSsr/kcGqF+z6yuH6HHpN0A==", + "dev": true, + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/wooorm" + } + }, + "node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-json": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-json/-/is-json-2.0.1.tgz", + "integrity": "sha512-6BEnpVn1rcf3ngfmViLM6vjUjGErbdrL4rwlv+u1NO1XO8kqT4YGL8+19Q+Z/bas8tY90BTWMk2+fW1g6hQjbA==", + "dev": true, + "license": "ISC" + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/iso-639-1": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/iso-639-1/-/iso-639-1-3.1.5.tgz", + "integrity": "sha512-gXkz5+KN7HrG0Q5UGqSMO2qB9AsbEeyLP54kF1YrMsIxmu+g4BdB7rflReZTSTZGpfj8wywu6pfPBCylPIzGQA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6.0" + } + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/junk": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/junk/-/junk-3.1.0.tgz", + "integrity": "sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/kleur": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-4.1.5.tgz", + "integrity": "sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/linkify-it": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/linkify-it/-/linkify-it-5.0.0.tgz", + "integrity": "sha512-5aHCbzQRADcdP+ATqnDuhhJ/MRIqDkZX5pyjFHRRysS8vZ5AbqGEoFIb6pYHPZ+L/OC2Lc+xT8uHVVR5CAK/wQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "uc.micro": "^2.0.0" + } + }, + "node_modules/liquidjs": { + "version": "10.24.0", + "resolved": "https://registry.npmjs.org/liquidjs/-/liquidjs-10.24.0.tgz", + "integrity": "sha512-TAUNAdgwaAXjjcUFuYVJm9kOVH7zc0mTKxsG9t9Lu4qdWjB2BEblyVIYpjWcmJLMGgiYqnGNJjpNMHx0gp/46A==", + "dev": true, + "license": "MIT", + "dependencies": { + "commander": "^10.0.0" + }, + "bin": { + "liquid": "bin/liquid.js", + "liquidjs": "bin/liquid.js" + }, + "engines": { + "node": ">=16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/liquidjs" + } + }, + "node_modules/list-to-array": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/list-to-array/-/list-to-array-1.1.0.tgz", + "integrity": "sha512-+dAZZ2mM+/m+vY9ezfoueVvrgnHIGi5FvgSymbIgJOFwiznWyA59mav95L+Mc6xPtL3s9gm5eNTlNtxJLbNM1g==", + "dev": true, + "license": "MIT" + }, + "node_modules/luxon": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/luxon/-/luxon-3.7.2.tgz", + "integrity": "sha512-vtEhXh/gNjI9Yg1u4jX/0YVPMvxzHuGgCm6tC5kZyb08yjGWGnqAjGJvcXbqQR2P3MyMEFnRbpcdFS6PBcLqew==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + } + }, + "node_modules/markdown-it": { + "version": "14.1.0", + "resolved": "https://registry.npmjs.org/markdown-it/-/markdown-it-14.1.0.tgz", + "integrity": "sha512-a54IwgWPaeBCAAsv13YgmALOF1elABB08FxO9i+r4VFk5Vl4pKokRPeX8u5TCgSsPi6ec1otfLjdOpVcgbpshg==", + "dev": true, + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1", + "entities": "^4.4.0", + "linkify-it": "^5.0.0", + "mdurl": "^2.0.0", + "punycode.js": "^2.3.1", + "uc.micro": "^2.1.0" + }, + "bin": { + "markdown-it": "bin/markdown-it.mjs" + } + }, + "node_modules/markdown-it/node_modules/entities": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/maximatch": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/maximatch/-/maximatch-0.1.0.tgz", + "integrity": "sha512-9ORVtDUFk4u/NFfo0vG/ND/z7UQCVZBL539YW0+U1I7H1BkZwizcPx5foFv7LCPcBnm2U6RjFnQOsIvN4/Vm2A==", + "dev": true, + "license": "MIT", + "dependencies": { + "array-differ": "^1.0.0", + "array-union": "^1.0.1", + "arrify": "^1.0.0", + "minimatch": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mdurl": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/mdurl/-/mdurl-2.0.0.tgz", + "integrity": "sha512-Lf+9+2r+Tdp5wXDXC4PcIBjTDtq4UKjCPMQhKIuzpJNW0b96kVqSwW0bT7FhRSfmAiFYgP+SCRvdrDozfh0U5w==", + "dev": true, + "license": "MIT" + }, + "node_modules/mime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", + "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==", + "dev": true, + "license": "MIT", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/mime-db": { + "version": "1.54.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.54.0.tgz", + "integrity": "sha512-aU5EJuIN2WDemCcAp2vFBfp/m4EAhWJnUNSSw0ixs7/kXbd6Pg64EmwJkNdFhB8aWt1sH2CTXrLxo/iAGV3oPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-3.0.1.tgz", + "integrity": "sha512-xRc4oEhT6eaBpU1XF7AjpOFD+xQmXNB5OVKwp4tqCuBpHLS/ZbBDrc07mYTDqVMg6PfxUjjNp85O6Cd2Z/5HWA==", + "dev": true, + "license": "MIT", + "dependencies": { + "mime-db": "^1.54.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/minipass": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "dev": true, + "license": "ISC", + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/moo": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/moo/-/moo-0.5.2.tgz", + "integrity": "sha512-iSAJLHYKnX41mKcJKjqvnAN9sf0LMDTXDEvFv+ffuRR9a1MIuXLjMNL6EsnDHSkKLTWNqQQ5uo61P4EbU4NU+Q==", + "dev": true, + "license": "BSD-3-Clause" + }, + "node_modules/morphdom": { + "version": "2.7.7", + "resolved": "https://registry.npmjs.org/morphdom/-/morphdom-2.7.7.tgz", + "integrity": "sha512-04GmsiBcalrSCNmzfo+UjU8tt3PhZJKzcOy+r1FlGA7/zri8wre3I1WkYN9PT3sIeIKfW9bpyElA+VzOg2E24g==", + "dev": true, + "license": "MIT" + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true, + "license": "MIT" + }, + "node_modules/node-retrieve-globals": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/node-retrieve-globals/-/node-retrieve-globals-6.0.1.tgz", + "integrity": "sha512-j0DeFuZ/Wg3VlklfbxUgZF/mdHMTEiEipBb3q0SpMMbHaV3AVfoUQF8UGxh1s/yjqO0TgRZd4Pi/x2yRqoQ4Eg==", + "dev": true, + "license": "MIT", + "dependencies": { + "acorn": "^8.14.1", + "acorn-walk": "^8.3.4", + "esm-import-transformer": "^3.0.3" + } + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/nunjucks": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/nunjucks/-/nunjucks-3.2.4.tgz", + "integrity": "sha512-26XRV6BhkgK0VOxfbU5cQI+ICFUtMLixv1noZn1tGU38kQH5A5nmmbk/O45xdyBhD1esk47nKrY0mvQpZIhRjQ==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "a-sync-waterfall": "^1.0.0", + "asap": "^2.0.3", + "commander": "^5.1.0" + }, + "bin": { + "nunjucks-precompile": "bin/precompile" + }, + "engines": { + "node": ">= 6.9.0" + }, + "peerDependencies": { + "chokidar": "^3.3.0" + }, + "peerDependenciesMeta": { + "chokidar": { + "optional": true + } + } + }, + "node_modules/nunjucks/node_modules/commander": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz", + "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "dev": true, + "license": "MIT", + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/parse-srcset": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/parse-srcset/-/parse-srcset-1.0.2.tgz", + "integrity": "sha512-/2qh0lav6CmI15FzA3i/2Bzk2zCgQhGMkvhOhKNcBVQ1ldgpbfiNTVslmooUmWJcADi1f1kIeynbDRVzNlfR6Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/picomatch": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz", + "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/please-upgrade-node": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/please-upgrade-node/-/please-upgrade-node-3.2.0.tgz", + "integrity": "sha512-gQR3WpIgNIKwBMVLkpMUeR3e1/E1y42bqDQZfql+kDeXd8COYfM8PQA4X6y7a8u9Ua9FHmsrrmirW2vHs45hWg==", + "dev": true, + "license": "MIT", + "dependencies": { + "semver-compare": "^1.0.0" + } + }, + "node_modules/posthtml": { + "version": "0.16.7", + "resolved": "https://registry.npmjs.org/posthtml/-/posthtml-0.16.7.tgz", + "integrity": "sha512-7Hc+IvlQ7hlaIfQFZnxlRl0jnpWq2qwibORBhQYIb0QbNtuicc5ZxvKkVT71HJ4Py1wSZ/3VR1r8LfkCtoCzhw==", + "dev": true, + "license": "MIT", + "dependencies": { + "posthtml-parser": "^0.11.0", + "posthtml-render": "^3.0.0" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/posthtml-match-helper": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/posthtml-match-helper/-/posthtml-match-helper-2.0.3.tgz", + "integrity": "sha512-p9oJgTdMF2dyd7WE54QI1LvpBIkNkbSiiECKezNnDVYhGhD1AaOnAkw0Uh0y5TW+OHO8iBdSqnd8Wkpb6iUqmw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "peerDependencies": { + "posthtml": "^0.16.6" + } + }, + "node_modules/posthtml-parser": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/posthtml-parser/-/posthtml-parser-0.11.0.tgz", + "integrity": "sha512-QecJtfLekJbWVo/dMAA+OSwY79wpRmbqS5TeXvXSX+f0c6pW4/SE6inzZ2qkU7oAMCPqIDkZDvd/bQsSFUnKyw==", + "dev": true, + "license": "MIT", + "dependencies": { + "htmlparser2": "^7.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/posthtml-render": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/posthtml-render/-/posthtml-render-3.0.0.tgz", + "integrity": "sha512-z+16RoxK3fUPgwaIgH9NGnK1HKY9XIDpydky5eQGgAFVXTCSezalv9U2jQuNV+Z9qV1fDWNzldcw4eK0SSbqKA==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-json": "^2.0.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/prr": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", + "integrity": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==", + "dev": true, + "license": "MIT" + }, + "node_modules/punycode.js": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode.js/-/punycode.js-2.3.1.tgz", + "integrity": "sha512-uxFIHU0YlHYhDQtV4R9J6a52SLx28BCjT+4ieh7IGbgwVJWO+km431c4yRlREUAsAmt/uMjQUyQHNEPf0M39CA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "license": "MIT", + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/readdirp/node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/section-matter": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/section-matter/-/section-matter-1.0.0.tgz", + "integrity": "sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==", + "dev": true, + "license": "MIT", + "dependencies": { + "extend-shallow": "^2.0.1", + "kind-of": "^6.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/semver": { + "version": "7.7.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.3.tgz", + "integrity": "sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver-compare": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/semver-compare/-/semver-compare-1.0.0.tgz", + "integrity": "sha512-YM3/ITh2MJ5MtzaM429anh+x2jiLVjqILF4m4oyQB18W7Ggea7BfqdH/wGMK7dDiMghv/6WG7znWMwUDzJiXow==", + "dev": true, + "license": "MIT" + }, + "node_modules/send": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/send/-/send-1.2.0.tgz", + "integrity": "sha512-uaW0WwXKpL9blXE2o0bRhoL2EGXIrZxQ2ZQ4mgcfoBxdFmQold+qWsD2jLrfZ0trjKL6vOw0j//eAwcALFjKSw==", + "dev": true, + "license": "MIT", + "dependencies": { + "debug": "^4.3.5", + "encodeurl": "^2.0.0", + "escape-html": "^1.0.3", + "etag": "^1.8.1", + "fresh": "^2.0.0", + "http-errors": "^2.0.0", + "mime-types": "^3.0.1", + "ms": "^2.1.3", + "on-finished": "^2.4.1", + "range-parser": "^1.2.1", + "statuses": "^2.0.1" + }, + "engines": { + "node": ">= 18" + } + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "dev": true, + "license": "ISC" + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/slugify": { + "version": "1.6.6", + "resolved": "https://registry.npmjs.org/slugify/-/slugify-1.6.6.tgz", + "integrity": "sha512-h+z7HKHYXj6wJU+AnS/+IH8Uh9fdcX1Lrhg1/VMdf9PwoBQXFcXiAdsy2tSK0P6gKwJLXp02r90ahUCqHk9rrw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "dev": true, + "license": "BSD-3-Clause" + }, + "node_modules/ssri": { + "version": "11.0.0", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-11.0.0.tgz", + "integrity": "sha512-aZpUoMN/Jj2MqA4vMCeiKGnc/8SuSyHbGSBdgFbZxP8OJGF/lFkIuElzPxsN0q8TQQ+prw3P4EDfB3TBHHgfXw==", + "dev": true, + "license": "ISC", + "dependencies": { + "minipass": "^7.0.3" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/strip-bom-string": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-bom-string/-/strip-bom-string-1.0.0.tgz", + "integrity": "sha512-uCC2VHvQRYu+lMh4My/sFNmF2klFymLX1wHJeXnbEJERpV/ZsVuonzerjfrGpIGF7LBVa1O7i9kjiWvJiFck8g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/tinyglobby": { + "version": "0.2.15", + "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.15.tgz", + "integrity": "sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "fdir": "^6.5.0", + "picomatch": "^4.0.3" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/SuperchupuDev" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/uc.micro": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/uc.micro/-/uc.micro-2.1.0.tgz", + "integrity": "sha512-ARDJmphmdvUk6Glw7y9DQ2bFkKBHwQHLi2lsaH6PPmz/Ka9sFOBsBluozhDltWmnv9u/cF6Rt87znRTPV+yp/A==", + "dev": true, + "license": "MIT" + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/urlpattern-polyfill": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/urlpattern-polyfill/-/urlpattern-polyfill-10.1.0.tgz", + "integrity": "sha512-IGjKp/o0NL3Bso1PymYURCJxMPNAf/ILOpendP9f5B6e1rTJgdgiOvgfoT8VxCAdY+Wisb9uhGaJJf3yZ2V9nw==", + "dev": true, + "license": "MIT" + }, + "node_modules/ws": { + "version": "8.18.3", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.3.tgz", + "integrity": "sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + } + } +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..9f3666c --- /dev/null +++ b/package.json @@ -0,0 +1,16 @@ +{ + "name": "o-k-i.net-v2", + "version": "1.0.0", + "description": "Site web de l'Organisation Ka Internationale (OKI) - V2", + "scripts": { + "start": "eleventy --serve", + "build": "eleventy", + "clean": "rm -rf _site" + }, + "keywords": [], + "author": "Organisation Ka Internationale", + "license": "AGPL-3.0", + "devDependencies": { + "@11ty/eleventy": "^3.1.2" + } +} diff --git a/src/_data/contact.json b/src/_data/contact.json new file mode 100644 index 0000000..0b1face --- /dev/null +++ b/src/_data/contact.json @@ -0,0 +1,60 @@ +{ + "sections": [ + { + "title": "🌐 Web & Contact", + "links": [ + { + "text": "o-k-i.net", + "url": "https://o-k-i.net" + }, + { + "text": "kontak@o-k-i.net", + "url": "mailto:kontak@o-k-i.net" + } + ] + }, + { + "title": "💬 Réseaux sociaux", + "links": [ + { + "text": "Telegram", + "url": "https://t.me/OrganisationKA" + }, + { + "text": "X (Twitter)", + "url": "https://x.com/OrganisationKA" + }, + { + "text": "Pleroma", + "url": "https://bokantaj.o-k-i.net/@admin" + } + ] + }, + { + "title": "🎥 Médias", + "links": [ + { + "text": "Chaîne PeerTube", + "url": "https://gade.o-k-i.net/a/oki/video-channels" + }, + { + "text": "Discord", + "url": "https://discord.gg/a2r9NYNM" + }, + { + "text": "Revolt", + "url": "https://rvlt.gg/e1zJrg3p" + } + ] + }, + { + "title": "💻 Code & Développement", + "links": [ + { + "text": "Codeberg", + "url": "https://codeberg.org/OKI" + } + ] + } + ] +} diff --git a/src/_data/navigation.json b/src/_data/navigation.json new file mode 100644 index 0000000..9db97cd --- /dev/null +++ b/src/_data/navigation.json @@ -0,0 +1,27 @@ +[ + { + "text": "Fédiverse", + "url": "#fediverse" + }, + { + "text": "Projets Web", + "url": "#projets" + }, + { + "text": "Mission", + "url": "#mission" + }, + { + "text": "Hébergement", + "url": "#hebergement" + }, + { + "text": "Partenaires", + "url": "#partenaires" + }, + { + "text": "Codeberg", + "url": "https://codeberg.org/OKI", + "external": true + } +] diff --git a/src/_data/partners.json b/src/_data/partners.json new file mode 100644 index 0000000..8e3116f --- /dev/null +++ b/src/_data/partners.json @@ -0,0 +1,14 @@ +[ + { + "name": "Joukawouvè", + "logo": "/assets/images/joukawouve.png", + "description": "Partage de l'actualité guadeloupéenne et internationale.", + "url": "https://gade.o-k-i.net/accounts/joukawouve" + }, + { + "name": "Aktivist Vybz #AKV", + "logo": "/assets/images/akv.png", + "description": "Sélecteurs et DJs engagés, avec un contenu axé sur l'activisme et l'expression culturelle.", + "url": "https://gade.o-k-i.net/accounts/aktivist_vybz_akv" + } +] diff --git a/src/_data/projects.json b/src/_data/projects.json new file mode 100644 index 0000000..1d88174 --- /dev/null +++ b/src/_data/projects.json @@ -0,0 +1,37 @@ +[ + { + "name": "FEDIVERSE OKI", + "icon": "🌐", + "domain": "fediverse.o-k-i.net", + "description": "Portail d'accès à tous nos services Fédiverse", + "url": "https://fediverse.o-k-i.net/" + }, + { + "name": "OKI.RE", + "icon": "🎶", + "domain": "oki.re", + "description": "Transcriptions et traductions de productions musicales", + "url": "https://oki.re/" + }, + { + "name": "NUVEL.NU", + "icon": "📰", + "domain": "nuvel.nu", + "description": "Actualités multilingues de nos régions", + "url": "https://nuvel.nu/" + }, + { + "name": "JWE.OVH", + "icon": "🎮", + "domain": "jwe.ovh", + "description": "Jeu cartographique éducatif et ludique", + "url": "https://jwe.ovh/" + }, + { + "name": "GONG.GP", + "icon": "📚", + "domain": "gong.gp", + "description": "Documents historiques du GONG", + "url": "https://gong.gp/" + } +] diff --git a/src/_data/services.json b/src/_data/services.json new file mode 100644 index 0000000..3c46a71 --- /dev/null +++ b/src/_data/services.json @@ -0,0 +1,34 @@ +[ + { + "name": "KUTE", + "icon": "🎙️", + "platform": "Castopod", + "description": "Alternative libre pour le podcasting. Créez, hébergez et diffusez vos podcasts en toute autonomie.", + "url": "https://kute.o-k-i.net/", + "linkText": "Découvrir KUTE" + }, + { + "name": "GADE", + "icon": "📺", + "platform": "PeerTube", + "description": "Alternative libre à YouTube pour le partage de vidéos. Hébergez et partagez vos contenus vidéo en toute liberté.", + "url": "https://gade.o-k-i.net/", + "linkText": "Accéder à GADE" + }, + { + "name": "BOKANTAJ", + "icon": "🐦", + "platform": "Pleroma + Soapbox", + "description": "Alternative libre à X (Twitter) pour les réseaux sociaux. Communiquez librement dans un espace respectueux.", + "url": "https://bokantaj.o-k-i.net/", + "linkText": "Rejoindre BOKANTAJ" + }, + { + "name": "MIZIK", + "icon": "🎵", + "platform": "Funkwhale", + "description": "Alternative libre à SoundCloud pour la musique. Partagez et découvrez de la musique sans limites.", + "url": "https://mizik.o-k-i.net/library", + "linkText": "Écouter sur MIZIK" + } +] diff --git a/src/_data/site.json b/src/_data/site.json new file mode 100644 index 0000000..f46a4be --- /dev/null +++ b/src/_data/site.json @@ -0,0 +1,9 @@ +{ + "name": "ORGANISATION KA INTERNATIONALE", + "shortName": "OKI", + "description": "Association à but non lucratif dédiée à la promotion de nos langues et au traitement de l'actualité, proposant des alternatives libres aux GAFAM.", + "url": "https://o-k-i.net", + "email": "kontak@o-k-i.net", + "copyright": "© 2025 ORGANISATION KA INTERNATIONALE", + "tagline": "Hébergé avec 💛" +} diff --git a/src/_data/values.json b/src/_data/values.json new file mode 100644 index 0000000..afe4549 --- /dev/null +++ b/src/_data/values.json @@ -0,0 +1,22 @@ +[ + { + "icon": "🌍", + "title": "Langues", + "description": "Promotion et préservation de nos langues" + }, + { + "icon": "🔓", + "title": "Liberté", + "description": "Logiciels libres et données ouvertes" + }, + { + "icon": "🤝", + "title": "Communauté", + "description": "Ensemble pour un internet éthique" + }, + { + "icon": "🛡️", + "title": "Souveraineté", + "description": "Contrôle de nos données et infrastructures" + } +] diff --git a/src/_includes/layouts/base.njk b/src/_includes/layouts/base.njk new file mode 100644 index 0000000..9936d5c --- /dev/null +++ b/src/_includes/layouts/base.njk @@ -0,0 +1,22 @@ + + + + + + {% if title %}{{ title }} | {{ site.name }}{% else %}{{ site.name }} | {{ site.shortName }}{% endif %} + + + + + + + + {% include "partials/nav.njk" %} + + {{ content | safe }} + + {% include "partials/footer.njk" %} + + + + diff --git a/src/_includes/partials/contact.njk b/src/_includes/partials/contact.njk new file mode 100644 index 0000000..63be5e7 --- /dev/null +++ b/src/_includes/partials/contact.njk @@ -0,0 +1,16 @@ +
+
+ {% for section in contact.sections %} +
+

{{ section.title }}

+ +
+ {% endfor %} +
+
diff --git a/src/_includes/partials/fediverse.njk b/src/_includes/partials/fediverse.njk new file mode 100644 index 0000000..6d57741 --- /dev/null +++ b/src/_includes/partials/fediverse.njk @@ -0,0 +1,22 @@ +
+
+

Nos Services Fédiverse

+

Alternatives libres et éthiques aux géants du numérique

+ +
+ {% for service in services %} +
+
{{ service.icon }}
+

{{ service.name }}

+
{{ service.platform }}
+

+ {{ service.description }} +

+ + {{ service.linkText }} → + +
+ {% endfor %} +
+
+
diff --git a/src/_includes/partials/footer.njk b/src/_includes/partials/footer.njk new file mode 100644 index 0000000..7c27933 --- /dev/null +++ b/src/_includes/partials/footer.njk @@ -0,0 +1,18 @@ +
+ +
diff --git a/src/_includes/partials/hero.njk b/src/_includes/partials/hero.njk new file mode 100644 index 0000000..faf85c5 --- /dev/null +++ b/src/_includes/partials/hero.njk @@ -0,0 +1,24 @@ +
+
+
+
+
+
+
+
+
+

ORGANISATION KA

+

INTERNATIONALE

+
+ 🌍 Traductions + 🎭 Cultures + 📰 Actualités + 🌐 Fédiverse +
+

{{ site.description }}

+ +
+
diff --git a/src/_includes/partials/hosting.njk b/src/_includes/partials/hosting.njk new file mode 100644 index 0000000..ad4e74d --- /dev/null +++ b/src/_includes/partials/hosting.njk @@ -0,0 +1,84 @@ +
+
+

Services d'Hébergement & Infrastructure

+ +
+

🚀 Solutions complètes pour votre souveraineté numérique

+

OKI administre et sécurise les outils informatiques pour associations, collectifs et initiatives citoyennes.

+ +
+
+ Hébergement mutualisé sécurisé +
+
+ Gestion de noms de domaine +
+
+ Instances Fédiverse clé en main +
+
+ Sauvegardes automatiques quotidiennes +
+
+ Serveur mail inclus +
+
+ Support technique +
+
+
+ +
+

Nos offres de services

+ +
+ +
+

📦 Hébergement Web

+
    +
  • • WordPress, Sites statiques
  • +
  • • Base de données MySQL/PostgreSQL
  • +
  • • Certificat SSL gratuit
  • +
  • • Stockage évolutif
  • +
+

Mutualisé

+
+ +
+

🌐 Instances Fédiverse

+
    +
  • • PeerTube (vidéo)
  • +
  • • Mastodon/Pleroma (social)
  • +
  • • Funkwhale (audio)
  • +
  • • Pixelfed (photos)
  • +
+

Installation & maintenance

+
+
+ +
+

🔐 Services de gestion sécurisée

+

OKI peut assurer la gestion complète de vos propriétés numériques :

+
    +
  • ✅ Propriété et gestion de noms de domaine
  • +
  • ✅ Administration de comptes web (réseaux sociaux, emails)
  • +
  • ✅ Gestion sécurisée des accès et mots de passe
  • +
  • ✅ Protection contre les prises de contrôle internes
  • +
  • ✅ Médiation en cas de conflits sur les outils numériques
  • +
+
+ +
+

💡 Pourquoi choisir OKI ?

+

+ Notre équipe technique, composée d'experts engagés, garantit l'impartialité, + la sécurité et la pérennité de vos outils numériques. Nous mutualisons les coûts entre + projets solidaires pour des tarifs justes et accessibles. +

+ + Contactez-nous → + +
+
+
+
diff --git a/src/_includes/partials/mission.njk b/src/_includes/partials/mission.njk new file mode 100644 index 0000000..7181184 --- /dev/null +++ b/src/_includes/partials/mission.njk @@ -0,0 +1,19 @@ +
+
+

Notre Mission

+

+ Soutenez notre mission de promotion de nos langues tout en contribuant à la diffusion d'une information libre et indépendante. + Votre soutien nous aide à maintenir des alternatives aux géants du numérique et à financer nos coûts de serveur. +

+ +
+ {% for value in values %} +
+
{{ value.icon }}
+

{{ value.title }}

+

{{ value.description }}

+
+ {% endfor %} +
+
+
diff --git a/src/_includes/partials/nav.njk b/src/_includes/partials/nav.njk new file mode 100644 index 0000000..d1ea684 --- /dev/null +++ b/src/_includes/partials/nav.njk @@ -0,0 +1,22 @@ + diff --git a/src/_includes/partials/partners.njk b/src/_includes/partials/partners.njk new file mode 100644 index 0000000..304cdce --- /dev/null +++ b/src/_includes/partials/partners.njk @@ -0,0 +1,23 @@ +
+
+

Nos Partenaires

+

+ Ils partagent nos valeurs et contribuent à enrichir notre écosystème numérique libre +

+ + +
+
diff --git a/src/_includes/partials/projects.njk b/src/_includes/partials/projects.njk new file mode 100644 index 0000000..b9934a1 --- /dev/null +++ b/src/_includes/partials/projects.njk @@ -0,0 +1,19 @@ +
+ +
diff --git a/src/_includes/partials/support.njk b/src/_includes/partials/support.njk new file mode 100644 index 0000000..8cf0fe8 --- /dev/null +++ b/src/_includes/partials/support.njk @@ -0,0 +1,149 @@ +
+
+

Nous Soutenir

+

+ Soutenez notre mission de promotion de nos langues et d'alternatives libres aux GAFAM +

+

+ Votre don nous aide à maintenir nos services et à financer nos coûts de serveur.
+ Chaque contribution renforce notre engagement envers la diversité linguistique, technologique et médiatique. +

+ + +
+ + +
+

+ 💸 Don ponctuel +

+ + + +
+ +
+ + + +
+
+
+ + +
+

+ ⭐ Don mensuel +

+ + + +
+ +
+ + €/mois + +
+
+
+ +
+ + + + +
+

+ 🔒 Vos paiements sont sécurisés et traités de manière fiable par Stripe. +

+

+ Aucune information de paiement n'est stockée sur notre site. +

+
+
+
diff --git a/src/assets/css/styles.css b/src/assets/css/styles.css new file mode 100644 index 0000000..4ae0987 --- /dev/null +++ b/src/assets/css/styles.css @@ -0,0 +1,829 @@ +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} + +:root { + /* Couleurs du logo OKI */ + --or-oki: #E8A625; + --noir-oki: #000000; + --vert-oki: #00A854; + --rouge-oki: #ED1C4C; + --blanc-creme: #F7F7F2; + + /* Couleurs dérivées pour le design */ + --noir-profond: #1A1A1A; + --gris-sombre: #2A2A2A; + --or-clair: #F5BD4F; + --vert-clair: #00C569; + --rouge-clair: #FF2D5F; +} + +body { + font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; + background: linear-gradient(135deg, var(--noir-oki) 0%, var(--gris-sombre) 100%); + color: var(--blanc-creme); + min-height: 100vh; + overflow-x: hidden; +} + +/* Navigation */ +nav { + position: fixed; + top: 0; + width: 100%; + padding: 1rem 2rem; + background: rgba(0, 0, 0, 0.95); + backdrop-filter: blur(10px); + z-index: 1000; + transition: all 0.3s ease; + border-bottom: 2px solid var(--or-oki); +} + +.nav-container { + max-width: 1200px; + margin: 0 auto; + display: flex; + justify-content: space-between; + align-items: center; +} + +.logo { + font-size: 1.8rem; + font-weight: 900; + background: linear-gradient(135deg, var(--or-oki), var(--or-clair)); + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; + text-decoration: none; +} + +.logo-image { + filter: drop-shadow(0 0 8px rgba(232, 166, 37, 0.6)) + drop-shadow(0 0 15px rgba(232, 166, 37, 0.4)) + drop-shadow(0 0 25px rgba(232, 166, 37, 0.2)); + transition: filter 0.3s ease; +} + +.logo-with-glow:hover .logo-image { + filter: drop-shadow(0 0 12px rgba(232, 166, 37, 0.8)) + drop-shadow(0 0 20px rgba(232, 166, 37, 0.6)) + drop-shadow(0 0 35px rgba(232, 166, 37, 0.4)); +} + +.nav-links { + display: flex; + gap: 2rem; + list-style: none; +} + +.nav-links a { + color: var(--blanc-creme); + text-decoration: none; + transition: color 0.3s; + font-weight: 500; +} + +.nav-links a:hover { + color: var(--or-oki); +} + +.menu-toggle { + display: none; + flex-direction: column; + cursor: pointer; +} + +.menu-toggle span { + width: 25px; + height: 3px; + background: var(--or-oki); + margin: 3px 0; + transition: 0.3s; +} + +/* Hero Section */ +.hero { + padding: 8rem 2rem 4rem; + min-height: 100vh; + display: flex; + align-items: center; + position: relative; + overflow: hidden; +} + +.hero-content { + max-width: 1200px; + margin: 0 auto; + z-index: 2; + position: relative; +} + +.hero h1 { + font-size: clamp(2rem, 6vw, 4rem); + font-weight: 900; + margin-bottom: 0.5rem; + line-height: 1.1; + animation: fadeInUp 0.8s ease; +} + +.hero-subtitle { + font-size: clamp(1.5rem, 4vw, 2.5rem); + margin-bottom: 1rem; + color: var(--or-oki); + animation: fadeInUp 0.8s ease 0.1s both; +} + +.accent-text { + background: linear-gradient(135deg, var(--or-oki), var(--rouge-oki)); + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; +} + +.hero p { + font-size: 1.3rem; + margin-bottom: 2rem; + opacity: 0.9; + max-width: 700px; + animation: fadeInUp 0.8s ease 0.2s both; +} + +.hero-tags { + display: flex; + gap: 1rem; + flex-wrap: wrap; + margin-bottom: 2rem; + animation: fadeInUp 0.8s ease 0.3s both; +} + +.tag { + padding: 0.5rem 1rem; + background: rgba(232, 166, 37, 0.2); + border-radius: 20px; + font-size: 0.9rem; + border: 1px solid var(--or-oki); +} + +.cta-buttons { + display: flex; + gap: 1rem; + flex-wrap: wrap; + animation: fadeInUp 0.8s ease 0.4s both; +} + +.btn { + padding: 1rem 2rem; + border: none; + border-radius: 50px; + font-size: 1.1rem; + font-weight: 600; + cursor: pointer; + transition: all 0.3s ease; + text-decoration: none; + display: inline-block; +} + +.btn-primary { + background: linear-gradient(135deg, var(--or-oki), var(--or-clair)); + color: var(--noir-oki); +} + +.btn-primary:hover { + transform: translateY(-3px); + box-shadow: 0 10px 30px rgba(232, 166, 37, 0.4); +} + +.btn-secondary { + background: transparent; + color: var(--or-oki); + border: 2px solid var(--or-oki); +} + +.btn-secondary:hover { + background: var(--or-oki); + color: var(--noir-oki); +} + +/* Network Animation */ +.network-bg { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + opacity: 0.1; + pointer-events: none; +} + +.node { + position: absolute; + width: 4px; + height: 4px; + background: var(--or-oki); + border-radius: 50%; + animation: pulse 3s infinite; +} + +/* Fediverse Services Section */ +.fediverse { + padding: 4rem 2rem; + background: var(--noir-profond); +} + +.section-container { + max-width: 1200px; + margin: 0 auto; +} + +.fediverse h2 { + font-size: 3rem; + margin-bottom: 1rem; + text-align: center; +} + +.section-subtitle { + text-align: center; + font-size: 1.2rem; + opacity: 0.9; + margin-bottom: 3rem; +} + +.services-grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); + gap: 2rem; + margin-bottom: 3rem; +} + +.service-card { + background: rgba(0, 168, 84, 0.1); + border: 2px solid var(--vert-oki); + border-radius: 20px; + padding: 2rem; + transition: all 0.3s ease; + position: relative; + overflow: hidden; +} + +.service-card::before { + content: ''; + position: absolute; + top: 0; + left: 0; + right: 0; + height: 4px; + background: linear-gradient(90deg, var(--vert-oki), var(--or-oki)); +} + +.service-card:hover { + transform: translateY(-5px); + box-shadow: 0 20px 40px rgba(0, 168, 84, 0.3); + background: rgba(0, 168, 84, 0.15); +} + +.service-icon { + font-size: 2.5rem; + margin-bottom: 1rem; +} + +.service-card h3 { + color: var(--or-oki); + margin-bottom: 0.5rem; + font-size: 1.8rem; +} + +.service-platform { + color: var(--vert-oki); + font-size: 0.9rem; + margin-bottom: 1rem; + font-weight: 600; +} + +.service-description { + margin-bottom: 1.5rem; + line-height: 1.6; +} + +.service-link { + color: var(--or-oki); + text-decoration: none; + font-weight: 600; + display: inline-flex; + align-items: center; + gap: 0.5rem; + transition: gap 0.3s ease; +} + +.service-link:hover { + gap: 1rem; + color: var(--or-clair); +} + +/* Web Projects Section */ +.projects { + padding: 4rem 2rem; + background: linear-gradient(135deg, var(--noir-profond) 0%, var(--gris-sombre) 100%); +} + +.projects h2 { + font-size: 3rem; + margin-bottom: 3rem; + text-align: center; +} + +.project-cards { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); + gap: 2rem; + margin-top: 3rem; +} + +.project-card { + background: rgba(0, 0, 0, 0.3); + border-radius: 20px; + padding: 1.5rem; + transition: all 0.3s ease; + border: 2px solid transparent; + text-align: center; + display: block; + cursor: pointer; +} + +.project-card:hover { + transform: translateY(-5px); + border-color: var(--or-oki); + box-shadow: 0 20px 40px rgba(232, 166, 37, 0.2); +} + +.project-card h3 { + color: var(--or-oki); + margin-bottom: 0.5rem; + font-size: 1.5rem; +} + +.project-domain { + color: var(--rouge-oki); + font-size: 0.9rem; + margin-bottom: 1rem; + font-family: monospace; +} + +.project-icon { + font-size: 3rem; + margin-bottom: 1rem; +} + +/* Mission Section */ +.mission { + padding: 4rem 2rem; + background: var(--noir-profond); + text-align: center; +} + +.mission h2 { + font-size: 3rem; + margin-bottom: 2rem; +} + +.mission-text { + font-size: 1.3rem; + max-width: 800px; + margin: 0 auto 3rem; + line-height: 1.8; +} + +.values-grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); + gap: 2rem; + margin-top: 3rem; + max-width: 1000px; + margin-left: auto; + margin-right: auto; +} + +.value-card { + background: rgba(255, 255, 255, 0.05); + padding: 2rem; + border-radius: 15px; + text-align: center; + transition: all 0.3s ease; + border: 1px solid rgba(232, 166, 37, 0.2); +} + +.value-card:hover { + transform: translateY(-5px); + background: rgba(232, 166, 37, 0.1); + border-color: var(--or-oki); +} + +.value-icon { + font-size: 3rem; + margin-bottom: 1rem; +} + +.value-card h3 { + color: var(--or-oki); + margin-bottom: 0.5rem; + font-size: 1.3rem; +} + +/* Hosting Services Section */ +.hosting { + padding: 4rem 2rem; + background: linear-gradient(135deg, var(--gris-sombre) 0%, var(--noir-profond) 100%); +} + +.hosting-banner { + background: rgba(232, 166, 37, 0.1); + border: 2px solid var(--or-oki); + border-radius: 20px; + padding: 2rem; + max-width: 900px; + margin: 0 auto 3rem; + text-align: center; +} + +.hosting-banner h3 { + color: var(--or-oki); + font-size: 1.8rem; + margin-bottom: 1rem; +} + +.hosting-features { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); + gap: 1.5rem; + margin: 2rem 0; +} + +.hosting-feature { + display: flex; + align-items: center; + gap: 0.5rem; +} + +.hosting-feature span { + color: var(--vert-oki); + font-size: 1.2rem; +} + +/* Partners Section */ +.partners { + padding: 4rem 2rem; + background: linear-gradient(135deg, var(--gris-sombre) 0%, var(--noir-profond) 100%); +} + +.partners h2 { + font-size: 3rem; + margin-bottom: 1rem; +} + +.partners-grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); + gap: 2rem; + margin-top: 3rem; + max-width: 900px; + margin-left: auto; + margin-right: auto; +} + +.partner-card { + background: rgba(0, 0, 0, 0.3); + border: 2px solid transparent; + border-radius: 20px; + padding: 2rem; + text-align: center; + transition: all 0.3s ease; + text-decoration: none; + color: inherit; + display: flex; + flex-direction: column; + align-items: center; +} + +.partner-card:hover { + transform: translateY(-5px); + border-color: var(--or-oki); + box-shadow: 0 20px 40px rgba(232, 166, 37, 0.2); +} + +.partner-logo-container { + width: 150px; + height: 150px; + display: flex; + align-items: center; + justify-content: center; + margin-bottom: 1.5rem; + background: rgba(255, 255, 255, 0.05); + border-radius: 50%; + padding: 1rem; +} + +.partner-logo { + max-width: 100%; + max-height: 100%; + object-fit: contain; +} + +.partner-card h3 { + color: var(--or-oki); + margin-bottom: 1rem; + font-size: 1.5rem; +} + +.partner-description { + line-height: 1.6; + margin-bottom: 1.5rem; + flex-grow: 1; +} + +.partner-link { + color: var(--or-oki); + font-weight: 600; + display: inline-flex; + align-items: center; + gap: 0.5rem; + transition: gap 0.3s ease; +} + +.partner-card:hover .partner-link { + gap: 1rem; +} + +/* Support Section */ +.support { + padding: 4rem 2rem; + background: var(--noir-profond); + text-align: center; +} + +.support h2 { + font-size: 3rem; + margin-bottom: 2rem; +} + +.support-options { + display: flex; + justify-content: center; + gap: 2rem; + flex-wrap: wrap; + margin-top: 2rem; +} + +/* Contact Section */ +.contact { + padding: 3rem 2rem; + background: rgba(0, 0, 0, 0.5); +} + +.contact-grid { + display: grid; + grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); + gap: 2rem; + max-width: 1200px; + margin: 0 auto; +} + +.contact-card { + text-align: center; +} + +.contact-card h3 { + color: var(--or-oki); + margin-bottom: 1rem; +} + +.contact-links { + display: flex; + flex-direction: column; + gap: 0.5rem; +} + +.contact-links a { + color: var(--blanc-creme); + text-decoration: none; + transition: color 0.3s; +} + +.contact-links a:hover { + color: var(--or-oki); +} + +/* Footer */ +footer { + padding: 2rem; + background: var(--noir-oki); + text-align: center; + border-top: 2px solid var(--or-oki); +} + +.footer-content { + max-width: 1200px; + margin: 0 auto; +} + +/* Donation Styles */ +.donation-amount { + display: flex; + align-items: center; + justify-content: center; + padding: 1rem; + background: rgba(232, 166, 37, 0.2); + border: 2px solid var(--or-oki); + color: var(--blanc-creme); + text-decoration: none; + border-radius: 12px; + font-weight: 600; + font-size: 1.1rem; + transition: all 0.3s ease; + cursor: pointer; +} + +.donation-amount:hover { + background: var(--or-oki); + color: var(--noir-oki); + transform: translateY(-3px); + box-shadow: 0 5px 15px rgba(232, 166, 37, 0.4); +} + +.donation-amount.monthly { + background: rgba(0, 168, 84, 0.2); + border-color: var(--vert-oki); +} + +.donation-amount.monthly:hover { + background: var(--vert-oki); + color: var(--blanc-creme); + box-shadow: 0 5px 15px rgba(0, 168, 84, 0.4); +} + +input[type="number"]::-webkit-inner-spin-button, +input[type="number"]::-webkit-outer-spin-button { + -webkit-appearance: none; + margin: 0; +} + +input[type="number"] { + -moz-appearance: textfield; +} + +input[type="number"]:focus { + outline: none; + border-color: var(--or-oki); + background: rgba(255, 255, 255, 0.15); +} + +/* Custom Donation Form */ +.custom-donation-form { + display: flex; + gap: 0.5rem; + justify-content: center; + align-items: center; + max-width: 350px; + margin: 0 auto; + padding: 0 1rem; +} + +.custom-amount-input { + padding: 0.8rem; + border: 2px solid var(--or-oki); + background: rgba(255, 255, 255, 0.1); + color: var(--blanc-creme); + border-radius: 10px; + flex: 1; + min-width: 0; + font-size: 1rem; +} + +.custom-amount-input-monthly { + border-color: var(--vert-oki); +} + +.currency-symbol { + color: var(--blanc-creme); + font-size: 1rem; + white-space: nowrap; + flex-shrink: 0; +} + +.custom-donation-btn { + padding: 0.8rem 1.2rem; + border: none; + border-radius: 10px; + font-weight: 600; + cursor: pointer; + transition: all 0.3s; + white-space: nowrap; + flex-shrink: 0; +} + +.custom-donation-btn-primary { + background: var(--or-oki); + color: var(--noir-oki); +} + +.custom-donation-btn-secondary { + background: var(--vert-oki); + color: var(--blanc-creme); +} + +/* Animations */ +@keyframes fadeInUp { + from { + opacity: 0; + transform: translateY(30px); + } + to { + opacity: 1; + transform: translateY(0); + } +} + +@keyframes pulse { + 0%, 100% { + opacity: 0.3; + transform: scale(1); + } + 50% { + opacity: 1; + transform: scale(1.5); + } +} + +/* Responsive */ +@media (max-width: 768px) { + .nav-links { + display: none; + } + + .menu-toggle { + display: flex; + } + + .hero h1 { + font-size: 2rem; + } + + .hero-subtitle { + font-size: 1.5rem; + } + + .hero p { + font-size: 1.1rem; + } + + .cta-buttons { + flex-direction: column; + } + + .btn { + width: 100%; + text-align: center; + } + + .services-grid, + .project-cards { + grid-template-columns: 1fr; + } + + /* Custom Donation Form Mobile */ + .custom-donation-form { + gap: 0.4rem; + padding: 0 0.5rem; + max-width: 100%; + } + + .custom-amount-input { + padding: 0.6rem 0.5rem; + font-size: 0.9rem; + min-width: 70px; + } + + .currency-symbol { + font-size: 0.9rem; + } + + .custom-donation-btn { + padding: 0.6rem 0.8rem; + font-size: 0.9rem; + } +} + +@media (max-width: 380px) { + /* Very small screens */ + .custom-donation-form { + gap: 0.3rem; + } + + .custom-amount-input { + padding: 0.5rem; + font-size: 0.85rem; + } + + .custom-donation-btn { + padding: 0.5rem 0.6rem; + font-size: 0.85rem; + } +} diff --git a/src/assets/images/akv.png b/src/assets/images/akv.png new file mode 100644 index 0000000..3c97b12 Binary files /dev/null and b/src/assets/images/akv.png differ diff --git a/src/assets/images/favicon.ico b/src/assets/images/favicon.ico new file mode 100644 index 0000000..411db8c Binary files /dev/null and b/src/assets/images/favicon.ico differ diff --git a/src/assets/images/joukawouve.png b/src/assets/images/joukawouve.png new file mode 100644 index 0000000..bd9d507 Binary files /dev/null and b/src/assets/images/joukawouve.png differ diff --git a/src/assets/images/logo-512x512.png b/src/assets/images/logo-512x512.png new file mode 100644 index 0000000..d160c9c Binary files /dev/null and b/src/assets/images/logo-512x512.png differ diff --git a/src/assets/js/main.js b/src/assets/js/main.js new file mode 100644 index 0000000..c77b701 --- /dev/null +++ b/src/assets/js/main.js @@ -0,0 +1,229 @@ +// Smooth scrolling +document.querySelectorAll('a[href^="#"]').forEach(anchor => { + anchor.addEventListener('click', function (e) { + e.preventDefault(); + const target = document.querySelector(this.getAttribute('href')); + if (target) { + target.scrollIntoView({ + behavior: 'smooth', + block: 'start' + }); + } + }); +}); + +// Mobile menu toggle +const menuToggle = document.querySelector('.menu-toggle'); +const navLinks = document.querySelector('.nav-links'); +let menuOpen = false; + +menuToggle?.addEventListener('click', () => { + menuOpen = !menuOpen; + if (menuOpen) { + navLinks.style.display = 'flex'; + navLinks.style.position = 'absolute'; + navLinks.style.top = '100%'; + navLinks.style.left = '0'; + navLinks.style.right = '0'; + navLinks.style.background = 'rgba(0, 0, 0, 0.98)'; + navLinks.style.flexDirection = 'column'; + navLinks.style.padding = '1rem'; + navLinks.style.borderTop = '2px solid #E8A625'; + + // Animate menu toggle + menuToggle.children[0].style.transform = 'rotate(45deg) translateY(8px)'; + menuToggle.children[1].style.opacity = '0'; + menuToggle.children[2].style.transform = 'rotate(-45deg) translateY(-8px)'; + } else { + navLinks.style.display = 'none'; + + // Reset menu toggle + menuToggle.children[0].style.transform = ''; + menuToggle.children[1].style.opacity = '1'; + menuToggle.children[2].style.transform = ''; + } +}); + +// Close mobile menu when clicking outside +document.addEventListener('click', (e) => { + if (menuOpen && !menuToggle.contains(e.target) && !navLinks.contains(e.target)) { + menuOpen = false; + navLinks.style.display = 'none'; + menuToggle.children[0].style.transform = ''; + menuToggle.children[1].style.opacity = '1'; + menuToggle.children[2].style.transform = ''; + } +}); + +// Scroll animations +const observerOptions = { + threshold: 0.1, + rootMargin: '0px 0px -100px 0px' +}; + +const observer = new IntersectionObserver((entries) => { + entries.forEach(entry => { + if (entry.isIntersecting) { + entry.target.style.animation = 'fadeInUp 0.8s ease both'; + observer.unobserve(entry.target); + } + }); +}, observerOptions); + +// Observe all cards +document.querySelectorAll('.service-card, .project-card, .value-card').forEach(el => { + observer.observe(el); +}); + +// Navbar scroll effect +let lastScroll = 0; +const nav = document.querySelector('nav'); + +window.addEventListener('scroll', () => { + const currentScroll = window.pageYOffset; + + if (currentScroll > 100) { + nav.style.background = 'rgba(0, 0, 0, 0.98)'; + nav.style.boxShadow = '0 2px 20px rgba(232, 166, 37, 0.3)'; + } else { + nav.style.background = 'rgba(0, 0, 0, 0.95)'; + nav.style.boxShadow = ''; + } + + // Hide/show navbar on scroll + if (currentScroll > lastScroll && currentScroll > 500) { + nav.style.transform = 'translateY(-100%)'; + } else { + nav.style.transform = 'translateY(0)'; + } + + lastScroll = currentScroll; +}); + +// Network animation enhancement +function createNetworkLine() { + const nodes = document.querySelectorAll('.node'); + const networkBg = document.querySelector('.network-bg'); + + if (nodes.length > 1 && networkBg) { + for (let i = 0; i < nodes.length - 1; i++) { + const line = document.createElement('div'); + line.style.position = 'absolute'; + line.style.height = '1px'; + line.style.background = 'linear-gradient(90deg, transparent, #E8A625, transparent)'; + line.style.opacity = '0.2'; + line.style.animation = `pulse 4s infinite ${i * 0.5}s`; + + const node1 = nodes[i]; + const node2 = nodes[i + 1]; + + // Calculate line position and angle + const x1 = parseFloat(node1.style.left); + const y1 = parseFloat(node1.style.top); + const x2 = parseFloat(node2.style.left); + const y2 = parseFloat(node2.style.top); + + const distance = Math.sqrt(Math.pow(x2 - x1, 2) + Math.pow(y2 - y1, 2)); + const angle = Math.atan2(y2 - y1, x2 - x1) * 180 / Math.PI; + + line.style.width = distance + '%'; + line.style.left = x1 + '%'; + line.style.top = y1 + '%'; + line.style.transform = `rotate(${angle}deg)`; + line.style.transformOrigin = '0 0'; + + networkBg.appendChild(line); + } + } +} + +// Initialize network lines +createNetworkLine(); + +// Dynamic typing effect for hero subtitle +const subtitle = document.querySelector('.hero-subtitle'); +if (subtitle) { + const text = subtitle.textContent; + subtitle.textContent = ''; + let index = 0; + + function typeWriter() { + if (index < text.length) { + subtitle.textContent += text.charAt(index); + index++; + setTimeout(typeWriter, 100); + } + } + + setTimeout(typeWriter, 800); +} + +// Add hover effect to project cards with tilt +document.querySelectorAll('.project-card, .service-card').forEach(card => { + card.addEventListener('mousemove', (e) => { + const rect = card.getBoundingClientRect(); + const x = e.clientX - rect.left; + const y = e.clientY - rect.top; + + const centerX = rect.width / 2; + const centerY = rect.height / 2; + + const rotateX = (y - centerY) / 20; + const rotateY = (centerX - x) / 20; + + card.style.transform = `perspective(1000px) rotateX(${rotateX}deg) rotateY(${rotateY}deg) translateY(-5px)`; + }); + + card.addEventListener('mouseleave', () => { + card.style.transform = ''; + }); +}); + +// Easter egg: Konami code +const konamiCode = ['ArrowUp', 'ArrowUp', 'ArrowDown', 'ArrowDown', 'ArrowLeft', 'ArrowRight', 'ArrowLeft', 'ArrowRight', 'b', 'a']; +let konamiIndex = 0; + +document.addEventListener('keydown', (e) => { + if (e.key === konamiCode[konamiIndex]) { + konamiIndex++; + if (konamiIndex === konamiCode.length) { + document.body.style.animation = 'pulse 1s'; + setTimeout(() => { + alert('🎮 Félicitations! Vous avez trouvé le code secret! Bienvenue dans la résistance numérique!'); + document.body.style.animation = ''; + }, 1000); + konamiIndex = 0; + } + } else { + konamiIndex = 0; + } +}); + +// Progressive enhancement: Add loading states +// Disabled - not needed for external links +// document.querySelectorAll('.service-link, .project-card').forEach(link => { +// link.addEventListener('click', function(e) { +// if (this.href && this.href !== '#') { +// this.style.opacity = '0.6'; +// this.innerHTML += ' ⌛'; +// } +// }); +// }); + +// Custom donation handler +function handleCustomDonation(type) { + const input = document.getElementById(type === 'oneTime' ? 'customAmountOneTime' : 'customAmountMonthly'); + const amount = input.value; + + if (!amount || amount < 1) { + alert('Veuillez entrer un montant valide'); + return; + } + + // Redirect to custom amount Stripe URL + const stripeUrl = type === 'oneTime' + ? 'https://don.o-k-i.net/b/6oE2aO94P88X9u8eV4' // Custom one-time donation + : 'https://don.o-k-i.net/b/6oE2aO94P88X9u8eV4'; // Uses same link for custom amounts + + window.location.href = stripeUrl; +} diff --git a/src/index.njk b/src/index.njk new file mode 100644 index 0000000..efb4975 --- /dev/null +++ b/src/index.njk @@ -0,0 +1,12 @@ +--- +layout: layouts/base.njk +--- + +{% include "partials/hero.njk" %} +{% include "partials/fediverse.njk" %} +{% include "partials/projects.njk" %} +{% include "partials/mission.njk" %} +{% include "partials/hosting.njk" %} +{% include "partials/support.njk" %} +{% include "partials/partners.njk" %} +{% include "partials/contact.njk" %} diff --git a/src/mentions-legales.njk b/src/mentions-legales.njk new file mode 100644 index 0000000..50c958b --- /dev/null +++ b/src/mentions-legales.njk @@ -0,0 +1,227 @@ +--- +layout: layouts/base.njk +title: Mentions Légales +--- + +
+
+

+ Mentions Légales +

+ + +
+

+ 1. Présentation du site +

+

+ En vertu de l'article 6 de la loi n° 2004-575 du 21 juin 2004 pour la confiance dans l'économie numérique, + il est précisé aux utilisateurs du site internet o-k-i.net l'identité des différents intervenants + dans le cadre de sa réalisation et de son suivi : +

+
    +
  • + Propriétaire :
    + ORGANISATION KA INTERNATIONALE
    + 36 Rue Lethière, 97100 Basse-Terre +
  • +
  • + Responsable publication :
    + ORGANISATION KA INTERNATIONALE
    + Contact : kontak@o-k-i.net +
  • +
  • + Webmaster :
    + Cédric FAMIBELLE-PRONZOLA
    + Contact : contact@cedric-pronzola.re +
  • +
  • + Hébergeur :
    + OVH
    + 2 rue Kellermann, 59100 Roubaix +
  • +
  • + Délégué à la protection des données :
    + ORGANISATION KA INTERNATIONALE
    + Contact : kontak@o-k-i.net +
  • +
+
+ + +
+

+ 2. Conditions générales d'utilisation du site et des services proposés +

+

+ Le site est protégé par les dispositions relatives à la propriété intellectuelle. + L'utilisation du site implique l'acceptation pleine et entière des conditions générales d'utilisation ci-après décrites. + Ces conditions d'utilisation sont susceptibles d'être modifiées ou complétées à tout moment. +

+

+ Les utilisateurs du site ne peuvent pas réutiliser ou exploiter les éléments du site sans autorisation préalable. +

+
+ + +
+

+ 3. Description des services fournis +

+

+ Le site o-k-i.net a pour objet de fournir une information concernant l'ensemble des activités de l'Organisation Ka Internationale. +

+

+ ORGANISATION KA INTERNATIONALE s'efforce de fournir des informations aussi précises que possible. + Toutefois, il ne pourra être tenu responsable des oublis, des inexactitudes et des carences dans la mise à jour, + qu'elles soient de son fait ou du fait des tiers partenaires qui lui fournissent ces informations. +

+
+ + +
+

+ 4. Limitations techniques +

+

+ Le site utilise la technologie JavaScript. Le site est hébergé dans l'Union Européenne conformément au RGPD. +

+

+ ORGANISATION KA INTERNATIONALE ne pourra être tenue responsable de dommages matériels liés à l'utilisation du site. + De plus, l'utilisateur du site s'engage à accéder au site en utilisant un matériel récent, ne contenant pas de virus + et avec un navigateur de dernière génération mis à jour. +

+
+ + +
+

+ 5. Propriété intellectuelle et licences +

+

+ Le code source du site o-k-i.net est distribué sous licence GNU Affero General Public License v3.0 (AGPL-V3), + une licence libre qui garantit les libertés suivantes : +

+
    +
  • La liberté d'utiliser le logiciel à toute fin
  • +
  • La liberté d'étudier le fonctionnement du programme et de l'adapter
  • +
  • La liberté de redistribuer des copies
  • +
  • La liberté d'améliorer le programme et de publier ces améliorations
  • +
+

+ Cette licence garantit que toute modification du code source doit être publiée sous la même licence AGPL-V3. + Si vous utilisez ce code pour fournir un service en ligne, vous devez également rendre le code source modifié + disponible aux utilisateurs de ce service. +

+

+ Le texte complet de la licence est disponible sur : + + https://www.gnu.org/licenses/agpl-3.0.html + +

+

+ Les contenus textuels et visuels originaux du site (hors code source) restent la propriété de + ORGANISATION KA INTERNATIONALE. Leur utilisation est soumise aux conditions de la licence AGPL-V3 pour + les éléments techniques, et requiert une autorisation pour les autres usages. +

+
+ + +
+

+ 6. Limitations de responsabilité +

+

+ ORGANISATION KA INTERNATIONALE 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 o-k-i.net, et résultant soit de l'utilisation d'un matériel + ne répondant pas aux spécifications indiquées au point 4, soit de l'apparition d'un bug ou d'une incompatibilité. +

+

+ ORGANISATION KA INTERNATIONALE 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 o-k-i.net. +

+
+ + +
+

+ 7. Gestion des données personnelles +

+

+ En France, les données personnelles sont notamment protégées par le Règlement européen 2016/679 du 27 avril 2016 + relatif à la protection des personnes physiques à l'égard du traitement des données à caractère personnel (RGPD). +

+

+ Les données à caractère personnel recueillies sur le site o-k-i.net sont traitées pour les finalités suivantes : +

+
    +
  • Navigation sur le site
  • +
  • Prévention de la fraude informatique
  • +
  • Amélioration et optimisation de la navigation
  • +
  • Mesure d'audience et statistiques
  • +
+

+ En application de ces dispositions, vous disposez d'un droit d'accès, de rectification, d'effacement et de + portabilité de vos données personnelles. Vous pouvez exercer ces droits en contactant : + kontak@o-k-i.net +

+
+ + +
+

+ 8. Notification d'incident +

+

+ Quels que soient les efforts fournis, aucune méthode de transmission sur Internet et aucune méthode de stockage + électronique n'est complètement sûre. Nous ne pouvons en conséquence pas garantir une sécurité absolue. +

+

+ Si nous prenions connaissance d'une brèche de la sécurité, nous avertirions les utilisateurs concernés afin + qu'ils puissent prendre les mesures appropriées. Nos procédures de notification d'incident tiennent compte de + nos obligations légales, qu'elles se situent au niveau national ou européen. Nous nous engageons à informer + pleinement nos clients de toutes les questions relevant de la sécurité de leur compte et à leur fournir toutes + les informations nécessaires pour les aider à respecter leurs propres obligations réglementaires en matière + de reporting. +

+

+ Les systèmes de sécurité mis en place comprennent : pare-feu, chiffrement, pseudonymisation et mesures de + sécurité physiques. +

+
+ + +
+

+ 9. Cookies et balises web +

+

+ Le site peut utiliser des cookies pour améliorer l'expérience utilisateur. L'utilisateur peut désactiver + les cookies dans les paramètres de son navigateur. +

+

+ Certaines pages peuvent contenir des balises web (pixels invisibles) permettant notamment de mesurer + l'audience et la performance du site. +

+
+ + +
+

+ 10. Droit applicable et juridiction compétente +

+

+ Tout litige en relation avec l'utilisation du site o-k-i.net est soumis au droit français. + En dehors des cas où la loi ne le permet pas, il est fait attribution exclusive de juridiction + aux tribunaux compétents de Guadeloupe. +

+
+ + + +
+