feat: moteur nommé Folio, licence MIT, page licences mise à jour
This commit is contained in:
+1
-1
File diff suppressed because one or more lines are too long
@@ -22,6 +22,7 @@ Format : [Keep a Changelog](https://keepachangelog.com/fr/1.0.0/)
|
||||
- Police Inter auto-hébergée dans `public/assets/fonts/` (woff2, latin + latin-ext, OFL-1.1) (#7)
|
||||
- Favicon SVG `public/assets/favicon.svg` aux couleurs du site (#8)
|
||||
- Page `/route.php?action=licenses` listant les licences des composants tiers (Bootstrap, PHPMailer, Inter, Claude Code…)
|
||||
- Moteur renommé **Folio** (MIT) — `LICENSE` et `public/LICENSE` ajoutés, `composer.json` mis à jour
|
||||
|
||||
### Added
|
||||
- Initialisation du dépôt git sur le serveur
|
||||
|
||||
@@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2024–2026 Cédric Abonnel
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
+3
-1
@@ -1,6 +1,8 @@
|
||||
{
|
||||
"name": "varlog/microblog",
|
||||
"name": "varlog/folio",
|
||||
"description": "Folio — moteur de blog PHP minimaliste",
|
||||
"type": "project",
|
||||
"license": "MIT",
|
||||
"require": {
|
||||
"ext-pdo": "*",
|
||||
"php": ">=8.2",
|
||||
|
||||
@@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2024–2026 Cédric Abonnel
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
+41
-5
@@ -4,7 +4,47 @@ ob_start();
|
||||
|
||||
<div class="posts-list">
|
||||
<h1 class="mb-1">Licences</h1>
|
||||
<p class="text-muted mb-4">Composants logiciels tiers utilisés par ce site et leurs licences.</p>
|
||||
<p class="text-muted mb-4">Composants logiciels utilisés par ce site et leurs licences.</p>
|
||||
|
||||
<section class="mb-5">
|
||||
<h2 class="h5 mb-3">Ce site</h2>
|
||||
<div class="card">
|
||||
<div class="card-body p-0">
|
||||
<table class="table table-sm mb-0">
|
||||
<thead class="table-light">
|
||||
<tr>
|
||||
<th>Composant</th>
|
||||
<th>Licence</th>
|
||||
<th>Usage</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
<strong>Folio</strong>
|
||||
<span class="text-muted fw-normal">— moteur de blog PHP</span>
|
||||
</td>
|
||||
<td><span class="badge bg-light text-dark border">MIT</span></td>
|
||||
<td>
|
||||
Moteur de ce blog — par Cédric Abonnel
|
||||
(<a href="/LICENSE">voir la licence</a>)
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<strong>Contenu éditorial</strong>
|
||||
</td>
|
||||
<td><span class="badge bg-light text-dark border">CC BY 4.0</span></td>
|
||||
<td>
|
||||
Articles et textes du blog —
|
||||
<a href="https://creativecommons.org/licenses/by/4.0/" target="_blank" rel="noopener">Creative Commons Attribution 4.0</a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="mb-5">
|
||||
<h2 class="h5 mb-3">Bibliothèques (production)</h2>
|
||||
@@ -136,10 +176,6 @@ ob_start();
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<p class="text-muted" style="font-size:0.82rem">
|
||||
Le contenu éditorial de ce blog est publié sous licence
|
||||
<a href="https://creativecommons.org/licenses/by/4.0/" target="_blank" rel="noopener">CC BY 4.0</a>.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<?php
|
||||
|
||||
Reference in New Issue
Block a user