-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add 4 poems, update a thought page's title
- Loading branch information
1 parent
b9dde2c
commit 5cc7817
Showing
83 changed files
with
737 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
{"taxonomy":{"tags":["2024","acrostiche","amour","attitudes","doubleAcrostiche","nature","lovecat","ombres et lumières","pantoun","philosophie","saisons","sonnet","versVariable"],"categories":["Angoisse","Amitié","Amour platonique","Apprentissage","Aube","Automne","Ciel","Climat","Création","Crépuscule","Eau douce","Enfance et adolescence","Espoir","Etre","Eté","Faune","Flore","Foi","Hiver","Jardin et paysage","Lune","Mer","Mouvement","Musique et chant","Neige","Nuit","Passion","Portraits","Printemps","Romantisme","Révolte","Sommeil","Temps","Toucher","Ville"]}} | ||
{"taxonomy":{"tags":["2025","acrostiche","amour","attitudes","doubleAcrostiche","nature","lovecat","ombres et lumières","pantoun","philosophie","saisons","sonnet","versVariable"],"categories":["Angoisse","Amitié","Amour platonique","Apprentissage","Aube","Automne","Ciel","Climat","Création","Crépuscule","Eau douce","Enfance et adolescence","Espoir","Etre","Eté","Faune","Flore","Foi","Hiver","Jardin et paysage","Lune","Mer","Mouvement","Musique et chant","Neige","Nuit","Passion","Portraits","Printemps","Romantisme","Révolte","Sommeil","Temps","Toucher","Ville"]}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1150 | ||
1154 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import { addPieChart } from '../add-chart.js' | ||
(async function () { | ||
const data = [ | ||
{ label: 'Foi', value: 1, color: 'rgba(203, 93, 241, 1)' }, | ||
{ label: 'Temps', value: 3, color: 'rgba(140, 7, 221, 1)' }, | ||
{ label: 'Angoisse', value: 1, color: 'rgba(38, 9, 78, 1)' }, | ||
{ label: 'Mouvement', value: 1, color: 'rgba(250, 152, 70, 1)' }, | ||
{ label: 'Hiver', value: 1, color: 'rgba(24, 57, 30, 1)' }, | ||
]; | ||
addPieChart('season24Pie', [data], { plugins: { title: { display: true, text: 'Vingt-quatrième Saison : Les mots respirent - Depuis ddécembre 2024' } } }); | ||
})(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { addBarChart } from '../add-chart.js' | ||
(async function () { | ||
const data = [ | ||
{ label: 'Moins d\'un jour', value: 2, color: 'rgba(72, 149, 239, 1)' }, | ||
{ label: 'Un jour', value: 1, color: 'rgba(72, 149, 239, 0.9)' }, | ||
]; | ||
addBarChart('season24PoemIntervalBar', ['Fréquence'], [data], { scales: { y: { ticks: { stepSize: 1 } } } }); | ||
})(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import { addBarChart } from '../add-chart.js' | ||
(async function () { | ||
const data = [ | ||
[ | ||
{ label: '8', value: 2 }, | ||
{ label: '12', value: 1 }, | ||
{ label: '20', value: 1 }, | ||
] | ||
]; | ||
addBarChart('season24PoemLengthBar', ['Poèmes'], data, { scales: { y: { ticks: { stepSize: 1 } } } }); | ||
})(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import { addBarChart } from '../add-chart.js' | ||
(async function () { | ||
const data = [ | ||
{ label: '4', value: 1 }, | ||
{ label: '6', value: 1 }, | ||
{ label: '8', value: 2 }, | ||
]; | ||
addBarChart('season24VerseLengthBar', ['Poèmes'], [data], { scales: { y: { ticks: { stepSize: 1 } } } }); | ||
})(); |
Oops, something went wrong.