functional
This commit is contained in:
commit
c7fe91eb7a
72
Makefile
Normal file
72
Makefile
Normal file
@ -0,0 +1,72 @@
|
||||
PY?=python3
|
||||
PELICAN?=pelican
|
||||
PELICANOPTS=
|
||||
|
||||
BASEDIR=$(CURDIR)
|
||||
INPUTDIR=$(BASEDIR)/content
|
||||
OUTPUTDIR=$(BASEDIR)/output
|
||||
CONFFILE=$(BASEDIR)/pelicanconf.py
|
||||
PUBLISHCONF=$(BASEDIR)/publishconf.py
|
||||
|
||||
|
||||
DEBUG ?= 0
|
||||
ifeq ($(DEBUG), 1)
|
||||
PELICANOPTS += -D
|
||||
endif
|
||||
|
||||
RELATIVE ?= 0
|
||||
ifeq ($(RELATIVE), 1)
|
||||
PELICANOPTS += --relative-urls
|
||||
endif
|
||||
|
||||
SERVER ?= "0.0.0.0"
|
||||
|
||||
PORT ?= 0
|
||||
ifneq ($(PORT), 0)
|
||||
PELICANOPTS += -p $(PORT)
|
||||
endif
|
||||
|
||||
|
||||
help:
|
||||
@echo 'Makefile for a pelican Web site '
|
||||
@echo ' '
|
||||
@echo 'Usage: '
|
||||
@echo ' make html (re)generate the web site '
|
||||
@echo ' make clean remove the generated files '
|
||||
@echo ' make regenerate regenerate files upon modification '
|
||||
@echo ' make publish generate using production settings '
|
||||
@echo ' make serve [PORT=8000] serve site at http://localhost:8000'
|
||||
@echo ' make serve-global [SERVER=0.0.0.0] serve (as root) to $(SERVER):80 '
|
||||
@echo ' make devserver [PORT=8000] serve and regenerate together '
|
||||
@echo ' make devserver-global regenerate and serve on 0.0.0.0 '
|
||||
@echo ' '
|
||||
@echo 'Set the DEBUG variable to 1 to enable debugging, e.g. make DEBUG=1 html '
|
||||
@echo 'Set the RELATIVE variable to 1 to enable relative urls '
|
||||
@echo ' '
|
||||
|
||||
html:
|
||||
"$(PELICAN)" "$(INPUTDIR)" -o "$(OUTPUTDIR)" -s "$(CONFFILE)" $(PELICANOPTS)
|
||||
|
||||
clean:
|
||||
[ ! -d "$(OUTPUTDIR)" ] || rm -rf "$(OUTPUTDIR)"
|
||||
|
||||
regenerate:
|
||||
"$(PELICAN)" -r "$(INPUTDIR)" -o "$(OUTPUTDIR)" -s "$(CONFFILE)" $(PELICANOPTS)
|
||||
|
||||
serve:
|
||||
"$(PELICAN)" -l "$(INPUTDIR)" -o "$(OUTPUTDIR)" -s "$(CONFFILE)" $(PELICANOPTS)
|
||||
|
||||
serve-global:
|
||||
"$(PELICAN)" -l "$(INPUTDIR)" -o "$(OUTPUTDIR)" -s "$(CONFFILE)" $(PELICANOPTS) -b $(SERVER)
|
||||
|
||||
devserver:
|
||||
"$(PELICAN)" -lr "$(INPUTDIR)" -o "$(OUTPUTDIR)" -s "$(CONFFILE)" $(PELICANOPTS)
|
||||
|
||||
devserver-global:
|
||||
$(PELICAN) -lr $(INPUTDIR) -o $(OUTPUTDIR) -s $(CONFFILE) $(PELICANOPTS) -b 0.0.0.0
|
||||
|
||||
publish:
|
||||
"$(PELICAN)" "$(INPUTDIR)" -o "$(OUTPUTDIR)" -s "$(PUBLISHCONF)" $(PELICANOPTS)
|
||||
|
||||
|
||||
.PHONY: html help clean regenerate serve serve-global devserver publish
|
BIN
__pycache__/pelicanconf.cpython-310.pyc
Normal file
BIN
__pycache__/pelicanconf.cpython-310.pyc
Normal file
Binary file not shown.
BIN
__pycache__/publishconf.cpython-310.pyc
Normal file
BIN
__pycache__/publishconf.cpython-310.pyc
Normal file
Binary file not shown.
8
content/bleutee/calypso.md
Normal file
8
content/bleutee/calypso.md
Normal file
@ -0,0 +1,8 @@
|
||||
Title: Calypso I
|
||||
Authors: Furax Barbarossa
|
||||
Date: 2017-01-03
|
||||
Modified: 2020-05-07
|
||||
Category: Bleutée
|
||||
Link: https://youtu.be/EpzKLMGEcHU
|
||||
|
||||
C'est un collègue de Villefranche qui m'a fait découvert ce rappeur, le plus grand fan au bas mot.
|
8
content/bleutee/lifewroteitself.md
Normal file
8
content/bleutee/lifewroteitself.md
Normal file
@ -0,0 +1,8 @@
|
||||
Title: Life Wrote Itself
|
||||
Authors: Chester Watson
|
||||
Date: 2017-01-03
|
||||
Modified: 2020-05-07
|
||||
Category: Bleutée
|
||||
Link: https://youtu.be/c_5rYXz5aRM
|
||||
|
||||
Un rappeur de St Louis que j'ai beaucoup écouté en cette fin d'année. L'écart entre son album "Tin Wooki", qui commence déjà à dater, et ce qu'il fait actuellement est assez impressionant : sa voix est plus profonde, sa production plus recherchée, mais son écriture toujours aussi fine et mystérieuse.
|
8
content/bleutee/nothingtoprove.md
Normal file
8
content/bleutee/nothingtoprove.md
Normal file
@ -0,0 +1,8 @@
|
||||
Title: Nothing To Prove
|
||||
Authors: Kae Tempest
|
||||
Date: 2017-01-03
|
||||
Modified: 2020-05-07
|
||||
Category: Bleutée
|
||||
Link: https://youtu.be/68FMGZ9DKOU
|
||||
|
||||
Tout son dernier album, tout en gros synthés profonds, est très beau. J'avais un peu du mal avec le côté "poésie déclamée" pendant un moment, mais le ton épique de l'album me le fait complètement oublier.
|
8
content/bleutee/polyfilla.md
Normal file
8
content/bleutee/polyfilla.md
Normal file
@ -0,0 +1,8 @@
|
||||
Title: Polyfilla
|
||||
Authors: Loyle Carner
|
||||
Date: 2017-01-03
|
||||
Modified: 2020-05-07
|
||||
Category: Bleutée
|
||||
Link: https://youtu.be/pSUyBj_kek4
|
||||
|
||||
Honnêtement, je recommande tout son album "hugo", et en fait toute sa carrière. Le petit tremblement dans sa voix me touche à chaque fois.
|
8
content/bleutee/redroom.md
Normal file
8
content/bleutee/redroom.md
Normal file
@ -0,0 +1,8 @@
|
||||
Title: Red Room
|
||||
Authors: Hiatus Kaiyote
|
||||
Date: 2017-01-03
|
||||
Modified: 2020-05-07
|
||||
Category: Bleutée
|
||||
Link: https://www.youtube.com/watch?v=p46Tm9-7i7E
|
||||
|
||||
Un groupe australien dont j'ai beaucoup écouté le premier album et qui n'avait rien sorti depuis presque 10 ans. On peut avoir du mal avec la voix de la chanteuse au début, mais elle fini par rester.
|
8
content/bleutee/serious.md
Normal file
8
content/bleutee/serious.md
Normal file
@ -0,0 +1,8 @@
|
||||
Title: Serious
|
||||
Authors: Mansur Brown
|
||||
Date: 2017-01-03
|
||||
Modified: 2020-05-07
|
||||
Category: Bleutée
|
||||
Link: https://youtu.be/-QljSw8HivU
|
||||
|
||||
Énorme guitariste de jazz londonien, avec un jeu très rythmique, qui crée des espaces vaporeux que personne n'avait jamais exploré.
|
8
content/bleutee/silence.md
Normal file
8
content/bleutee/silence.md
Normal file
@ -0,0 +1,8 @@
|
||||
Title: Silence
|
||||
Authors: Tuerie
|
||||
Date: 2017-01-03
|
||||
Modified: 2020-05-07
|
||||
Category: Bleutée
|
||||
Link: https://youtu.be/_YVdhiy7eRA
|
||||
|
||||
Un unique EP existe de ce rappeur, "Bleu Gospel", fait pour être écouté d'une traite. Je l'ai vu en concert à Vénissieux, il était tout gentil. Il est descendu dans le public pour parler de sa dépression, c'était trop beau, j'ai pleuré voilà.
|
8
content/bleutee/sometimesisingtheblues.md
Normal file
8
content/bleutee/sometimesisingtheblues.md
Normal file
@ -0,0 +1,8 @@
|
||||
Title: Sometimes I Sing The Blues
|
||||
Authors: Spoek Mathambo
|
||||
Date: 2017-01-03
|
||||
Modified: 2020-05-07
|
||||
Category: Bleutée
|
||||
Link: https://youtu.be/MBzsunzk9hY
|
||||
|
||||
Un album calme et étrange d'un producteur Sud-Africain. Les voix et samples me rendent toujours un peu mélancoliques, un peu comme avec un autre groupe : Space Afrika.
|
9
content/bleutee/theredbetterbe.md
Normal file
9
content/bleutee/theredbetterbe.md
Normal file
@ -0,0 +1,9 @@
|
||||
Title: There'd Better Be A Mirror Ball
|
||||
Authors: Arctic Monkeys
|
||||
Date: 2017-01-03
|
||||
Modified: 2020-05-07
|
||||
Category: Bleutée
|
||||
Tags:
|
||||
Link: https://youtu.be/FY5CAz6S9kE
|
||||
|
||||
Des fois je pense que j'aime ce groupe juste pour les titres de leurs chansons. Leur nouvel album est très calme, avec piano et orchestre, j'adore la production.
|
8
content/orangee/balladofdorothy.md
Normal file
8
content/orangee/balladofdorothy.md
Normal file
@ -0,0 +1,8 @@
|
||||
Title: The Ballad of Dorothy Parker
|
||||
Authors: Prince
|
||||
Date: 2017-01-03
|
||||
Modified: 2020-05-07
|
||||
Category: Orangée
|
||||
Link: https://youtu.be/5nrdZfBShDU
|
||||
|
||||
Ça a été mon année Prince, j'ai découvert sa musique et son personnage. Celle-ci par exemple, une histoire racontée avec beaucoup d'autodérision.
|
8
content/orangee/howdeep.md
Normal file
8
content/orangee/howdeep.md
Normal file
@ -0,0 +1,8 @@
|
||||
Title: how deep ?
|
||||
Authors: Tai Verdes
|
||||
Date: 2017-01-03
|
||||
Modified: 2020-05-07
|
||||
Category: Orangée
|
||||
Link: https://youtu.be/Dpuv0DVbYFA
|
||||
|
||||
Une découverte au hasard d'internet, du groove qui casse la tête.
|
8
content/orangee/howitfeels.md
Normal file
8
content/orangee/howitfeels.md
Normal file
@ -0,0 +1,8 @@
|
||||
Title: How It Feels
|
||||
Authors: Sam Wise
|
||||
Date: 2017-01-03
|
||||
Modified: 2020-05-07
|
||||
Category: Orangée
|
||||
Link: https://youtu.be/nkUKtE1CD7k
|
||||
|
||||
Un rappeur de Londres qui détonne par son côté chaleureux là où ses compères sont plutôt "crachin et doudoune". Son dernier EP "None The Wiser" est aussi très cool.
|
9
content/orangee/imtight.md
Normal file
9
content/orangee/imtight.md
Normal file
@ -0,0 +1,9 @@
|
||||
Title: I'm Tight
|
||||
Authors: Louis Cole
|
||||
Date: 2017-01-03
|
||||
Modified: 2020-05-07
|
||||
Category: Orangée
|
||||
Tags:
|
||||
Link: https://youtu.be/u9XrWB-u1vc
|
||||
|
||||
Un clip IMPORTANT et NÉCESSAIRE - Telerama
|
8
content/orangee/jfk.md
Normal file
8
content/orangee/jfk.md
Normal file
@ -0,0 +1,8 @@
|
||||
Title: JFK2LAX
|
||||
Authors: Gang Starr
|
||||
Date: 2017-01-03
|
||||
Modified: 2020-05-07
|
||||
Category: Orangée
|
||||
Link: https://youtu.be/Z47I4tQtQV4
|
||||
|
||||
Un groupe mythique de rap des années 90 que j'avais complètement raté jusqu'à cette année.
|
8
content/orangee/lifegoeson.md
Normal file
8
content/orangee/lifegoeson.md
Normal file
@ -0,0 +1,8 @@
|
||||
Title: Life Goes On
|
||||
Authors: Ezra Collective
|
||||
Date: 2017-01-03
|
||||
Modified: 2020-05-07
|
||||
Category: Orangée
|
||||
Link: https://youtu.be/9sS-QEyLycs
|
||||
|
||||
Un album de jazz londonien pétri d'afrobeat qui tue. Venez on va les voir.
|
8
content/orangee/lifeilive.md
Normal file
8
content/orangee/lifeilive.md
Normal file
@ -0,0 +1,8 @@
|
||||
Title: Life I Live
|
||||
Authors: Pete Rock
|
||||
Date: 2017-01-03
|
||||
Modified: 2020-05-07
|
||||
Category: Orangée
|
||||
Link: https://youtu.be/I9wp09cmEO4
|
||||
|
||||
Pete Rock, J. Dilla, Gang Starr, Black Star : tout plein de groupes de rap underground des années 90 que j'ai découvert grâce à mon coloc-slash-encyclopédie du rap Safa.
|
9
content/orangee/matteblack.md
Normal file
9
content/orangee/matteblack.md
Normal file
@ -0,0 +1,9 @@
|
||||
Title: Matte Black
|
||||
Authors: $uicideboy$
|
||||
Date: 2017-01-03
|
||||
Modified: 2020-05-07
|
||||
Category: Orangée
|
||||
Tags:
|
||||
Link: https://youtu.be/gdEe_lXsULg
|
||||
|
||||
Je sais toujours pas sur quel ton prendre le côté "flingues gang cagoules flingues flingues" de leur esthétique, mais ce son m'a eu. À chaque fois que j'entend le passage "But I'm shi-ning baby girl WILD-ING" j'ai envie de casser un truc.
|
8
content/orangee/science.md
Normal file
8
content/orangee/science.md
Normal file
@ -0,0 +1,8 @@
|
||||
Title: Science
|
||||
Authors: Burna Boy
|
||||
Date: 2017-01-03
|
||||
Modified: 2020-05-07
|
||||
Category: Orangée
|
||||
Link: https://youtu.be/Ppdan_oizvc
|
||||
|
||||
Le dernier album de la superstar nigériane, écouté en boucle sur la route cette été.
|
8
content/orangee/tommorrowcomestheharvest.md
Normal file
8
content/orangee/tommorrowcomestheharvest.md
Normal file
@ -0,0 +1,8 @@
|
||||
Title: Tomorrow Comes The Harvest
|
||||
Authors: Tony Allen & Jeff Mills
|
||||
Date: 2017-01-03
|
||||
Modified: 2020-05-07
|
||||
Category: Orangée
|
||||
Link: https://youtu.be/UoeBCPptWxE
|
||||
|
||||
Un mariage improbable entre un producteur de techno de Detroit et le batteur de Fela Kuti, fondateur de l'afrobeat (REP).
|
9
content/verdoyante/callofthemountains.md
Normal file
9
content/verdoyante/callofthemountains.md
Normal file
@ -0,0 +1,9 @@
|
||||
Title: Call of the Mountains
|
||||
Authors: Foehn Trio
|
||||
Date: 2017-01-03
|
||||
Modified: 2020-05-07
|
||||
Category: Verdoyante
|
||||
Tags:
|
||||
Link: https://youtu.be/34N_63yglDY
|
||||
|
||||
Trio originaire des Alpes mais formé à Lyon. Le pianiste raconte en concert que cette chanson évoque un téléphérique qu'on peut prendre vers Chamonix, et les paysages qui défilent dessous. On les a vu en concert y'a pas longtemps avec Manon, et c'est louuuuurd
|
9
content/verdoyante/dribble.md
Normal file
9
content/verdoyante/dribble.md
Normal file
@ -0,0 +1,9 @@
|
||||
Title: Dribble
|
||||
Authors: Anomalie
|
||||
Date: 2017-01-03
|
||||
Modified: 2020-05-07
|
||||
Category: Verdoyante
|
||||
Tags:
|
||||
Link: https://youtu.be/QLDeUebGpfQ
|
||||
|
||||
Ce pianiste canadien a sorti un album fin 2021, qui a fait le fond musical d'une bonne partie de mon année. J'adore la multiplicité des sons et des groove, tout se renouvelle à chaque seconde.
|
9
content/verdoyante/fablesoffaubus.md
Normal file
9
content/verdoyante/fablesoffaubus.md
Normal file
@ -0,0 +1,9 @@
|
||||
Title: Fables of Faubus
|
||||
Authors: Charles Mingus
|
||||
Date: 2017-01-03
|
||||
Modified: 2020-05-07
|
||||
Category: Verdoyante
|
||||
Tags:
|
||||
Link: https://youtu.be/48eAYnfgrAo
|
||||
|
||||
Mon standard préféré de tous les temps, qui me fait penser à une BO de vieux film d'espion. Il y a un fond engagé à cette chanson, que je vous laisse découvrir.
|
8
content/verdoyante/kabilytouseg.md
Normal file
8
content/verdoyante/kabilytouseg.md
Normal file
@ -0,0 +1,8 @@
|
||||
Title: Kabily-touseg
|
||||
Authors: Mougar
|
||||
Date: 2017-01-03
|
||||
Modified: 2020-05-07
|
||||
Category: Verdoyante
|
||||
Link: https://youtu.be/H3Ieuj4pssQ
|
||||
|
||||
À la fusion de la musique folk et kabyle, une énergie de fou.
|
8
content/verdoyante/roundmidnight.md
Normal file
8
content/verdoyante/roundmidnight.md
Normal file
@ -0,0 +1,8 @@
|
||||
Title: Round Midnight
|
||||
Authors: Wes Montgomery
|
||||
Date: 2017-01-03
|
||||
Modified: 2020-05-07
|
||||
Category: Verdoyante
|
||||
Link: https://youtu.be/MOm17yw__6U
|
||||
|
||||
J'ai menti c'est ça mon standard préféré.
|
9
content/verdoyante/spacesamba.md
Normal file
9
content/verdoyante/spacesamba.md
Normal file
@ -0,0 +1,9 @@
|
||||
Title: Space Samba
|
||||
Authors: Lydian Collective
|
||||
Date: 2017-01-03
|
||||
Modified: 2020-05-07
|
||||
Category: Verdoyante
|
||||
Tags:
|
||||
Link: https://youtu.be/QzhmE-LHEOw
|
||||
|
||||
Le premier album pleinement produit d'un groupe qui s'était surtout fait connaître avec des vidéos intimistes dans leur studio. Ils arrivent parfois à avoir un son de jeu de Gameboy bizarrement addictif.
|
9
content/verdoyante/sunshine.md
Normal file
9
content/verdoyante/sunshine.md
Normal file
@ -0,0 +1,9 @@
|
||||
Title: Everybody loves the sunshine
|
||||
Authors: Takuya Kuroda
|
||||
Date: 2017-01-03
|
||||
Modified: 2020-05-07
|
||||
Category: Verdoyante
|
||||
Tags:
|
||||
Link: https://youtu.be/lZ8zu1aRYA8
|
||||
|
||||
Version très épurée, qui fait magnifiquement ressortir la voix. Dans le même album, "Rising Son" est une des première chanson que j'ai essayé de jouer à la trompette.
|
9
content/verdoyante/sweetflorence.md
Normal file
9
content/verdoyante/sweetflorence.md
Normal file
@ -0,0 +1,9 @@
|
||||
Title: Sweet Florence
|
||||
Authors: Jacob Desvarieux
|
||||
Date: 2017-01-03
|
||||
Modified: 2020-05-07
|
||||
Category: Verdoyante
|
||||
Tags:
|
||||
Link: https://youtu.be/9ncso3viNug
|
||||
|
||||
Super chanson du guitariste guadeloupéen (REP).
|
9
content/verdoyante/worldmightfallover.md
Normal file
9
content/verdoyante/worldmightfallover.md
Normal file
@ -0,0 +1,9 @@
|
||||
Title: The World Might Fall Over
|
||||
Authors: Monomono
|
||||
Date: 2017-01-03
|
||||
Modified: 2020-05-07
|
||||
Category: Verdoyante
|
||||
Tags:
|
||||
Link: https://www.youtube.com/watch?v=4aMv6l28hx8
|
||||
|
||||
Tiré de la BO de la saison 3 d'Atlanta, puits sans fond de découvertes musicales stylées.
|
72
output/archives.html
Normal file
72
output/archives.html
Normal file
@ -0,0 +1,72 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
|
||||
<title>Playlist - Archives</title>
|
||||
<link rel="stylesheet" media="screen"
|
||||
href="/theme/css/main.css"
|
||||
type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
<h1>Archives for Playlist</h1>
|
||||
|
||||
<dl>
|
||||
<dt>mar. 03 janvier 2017</dt>
|
||||
<dd><a href="/call-of-the-mountains.html">Call of the Mountains</a></dd>
|
||||
<dt>mar. 03 janvier 2017</dt>
|
||||
<dd><a href="/calypso-i.html">Calypso I</a></dd>
|
||||
<dt>mar. 03 janvier 2017</dt>
|
||||
<dd><a href="/dribble.html">Dribble</a></dd>
|
||||
<dt>mar. 03 janvier 2017</dt>
|
||||
<dd><a href="/everybody-loves-the-sunshine.html">Everybody loves the sunshine</a></dd>
|
||||
<dt>mar. 03 janvier 2017</dt>
|
||||
<dd><a href="/fables-of-faubus.html">Fables of Faubus</a></dd>
|
||||
<dt>mar. 03 janvier 2017</dt>
|
||||
<dd><a href="/how-deep.html">how deep ?</a></dd>
|
||||
<dt>mar. 03 janvier 2017</dt>
|
||||
<dd><a href="/how-it-feels.html">How It Feels</a></dd>
|
||||
<dt>mar. 03 janvier 2017</dt>
|
||||
<dd><a href="/im-tight.html">I'm Tight</a></dd>
|
||||
<dt>mar. 03 janvier 2017</dt>
|
||||
<dd><a href="/jfk2lax.html">JFK2LAX</a></dd>
|
||||
<dt>mar. 03 janvier 2017</dt>
|
||||
<dd><a href="/kabily-touseg.html">Kabily-touseg</a></dd>
|
||||
<dt>mar. 03 janvier 2017</dt>
|
||||
<dd><a href="/life-goes-on.html">Life Goes On</a></dd>
|
||||
<dt>mar. 03 janvier 2017</dt>
|
||||
<dd><a href="/life-i-live.html">Life I Live</a></dd>
|
||||
<dt>mar. 03 janvier 2017</dt>
|
||||
<dd><a href="/life-wrote-itself.html">Life Wrote Itself</a></dd>
|
||||
<dt>mar. 03 janvier 2017</dt>
|
||||
<dd><a href="/matte-black.html">Matte Black</a></dd>
|
||||
<dt>mar. 03 janvier 2017</dt>
|
||||
<dd><a href="/nothing-to-prove.html">Nothing To Prove</a></dd>
|
||||
<dt>mar. 03 janvier 2017</dt>
|
||||
<dd><a href="/polyfilla.html">Polyfilla</a></dd>
|
||||
<dt>mar. 03 janvier 2017</dt>
|
||||
<dd><a href="/red-room.html">Red Room</a></dd>
|
||||
<dt>mar. 03 janvier 2017</dt>
|
||||
<dd><a href="/round-midnight.html">Round Midnight</a></dd>
|
||||
<dt>mar. 03 janvier 2017</dt>
|
||||
<dd><a href="/science.html">Science</a></dd>
|
||||
<dt>mar. 03 janvier 2017</dt>
|
||||
<dd><a href="/serious.html">Serious</a></dd>
|
||||
<dt>mar. 03 janvier 2017</dt>
|
||||
<dd><a href="/silence.html">Silence</a></dd>
|
||||
<dt>mar. 03 janvier 2017</dt>
|
||||
<dd><a href="/sometimes-i-sing-the-blues.html">Sometimes I Sing The Blues</a></dd>
|
||||
<dt>mar. 03 janvier 2017</dt>
|
||||
<dd><a href="/space-samba.html">Space Samba</a></dd>
|
||||
<dt>mar. 03 janvier 2017</dt>
|
||||
<dd><a href="/sweet-florence.html">Sweet Florence</a></dd>
|
||||
<dt>mar. 03 janvier 2017</dt>
|
||||
<dd><a href="/the-ballad-of-dorothy-parker.html">The Ballad of Dorothy Parker</a></dd>
|
||||
<dt>mar. 03 janvier 2017</dt>
|
||||
<dd><a href="/the-world-might-fall-over.html">The World Might Fall Over</a></dd>
|
||||
<dt>mar. 03 janvier 2017</dt>
|
||||
<dd><a href="/thered-better-be-a-mirror-ball.html">There'd Better Be A Mirror Ball</a></dd>
|
||||
<dt>mar. 03 janvier 2017</dt>
|
||||
<dd><a href="/tomorrow-comes-the-harvest.html">Tomorrow Comes The Harvest</a></dd>
|
||||
</dl>
|
||||
</body>
|
||||
</html>
|
0
output/author/anomalie.html
Normal file
0
output/author/anomalie.html
Normal file
0
output/author/arctic-monkeys.html
Normal file
0
output/author/arctic-monkeys.html
Normal file
0
output/author/burna-boy.html
Normal file
0
output/author/burna-boy.html
Normal file
0
output/author/charles-mingus.html
Normal file
0
output/author/charles-mingus.html
Normal file
0
output/author/chester-watson.html
Normal file
0
output/author/chester-watson.html
Normal file
0
output/author/ezra-collective.html
Normal file
0
output/author/ezra-collective.html
Normal file
0
output/author/foehn-trio.html
Normal file
0
output/author/foehn-trio.html
Normal file
0
output/author/furax-barbarossa.html
Normal file
0
output/author/furax-barbarossa.html
Normal file
0
output/author/gang-starr.html
Normal file
0
output/author/gang-starr.html
Normal file
0
output/author/hiatus-kaiyote.html
Normal file
0
output/author/hiatus-kaiyote.html
Normal file
0
output/author/jacob-desvarieux.html
Normal file
0
output/author/jacob-desvarieux.html
Normal file
0
output/author/jacob-devarieux.html
Normal file
0
output/author/jacob-devarieux.html
Normal file
0
output/author/kae-tempest.html
Normal file
0
output/author/kae-tempest.html
Normal file
0
output/author/louis-cole.html
Normal file
0
output/author/louis-cole.html
Normal file
0
output/author/loyle-carner.html
Normal file
0
output/author/loyle-carner.html
Normal file
0
output/author/lydian-collective.html
Normal file
0
output/author/lydian-collective.html
Normal file
0
output/author/mansur-brown.html
Normal file
0
output/author/mansur-brown.html
Normal file
0
output/author/monomono.html
Normal file
0
output/author/monomono.html
Normal file
0
output/author/mougar.html
Normal file
0
output/author/mougar.html
Normal file
0
output/author/pete-rock.html
Normal file
0
output/author/pete-rock.html
Normal file
0
output/author/prince.html
Normal file
0
output/author/prince.html
Normal file
0
output/author/sam-wise.html
Normal file
0
output/author/sam-wise.html
Normal file
0
output/author/spoek-mathambo.html
Normal file
0
output/author/spoek-mathambo.html
Normal file
0
output/author/tai-verdes.html
Normal file
0
output/author/tai-verdes.html
Normal file
0
output/author/takuya-kuroda.html
Normal file
0
output/author/takuya-kuroda.html
Normal file
0
output/author/tony-allen-jeff-mills.html
Normal file
0
output/author/tony-allen-jeff-mills.html
Normal file
0
output/author/tuerie.html
Normal file
0
output/author/tuerie.html
Normal file
0
output/author/uicideboy.html
Normal file
0
output/author/uicideboy.html
Normal file
0
output/author/wes-montgomery.html
Normal file
0
output/author/wes-montgomery.html
Normal file
0
output/author/zazie.html
Normal file
0
output/author/zazie.html
Normal file
0
output/authors.html
Normal file
0
output/authors.html
Normal file
22
output/call-of-the-mountains.html
Normal file
22
output/call-of-the-mountains.html
Normal file
@ -0,0 +1,22 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
|
||||
<title>Playlist | Call of the Mountains </title>
|
||||
<link rel="stylesheet" media="screen"
|
||||
href="/theme/css/main.css"
|
||||
type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="title-block">
|
||||
<h1>Call of the Mountains</h1>
|
||||
<h4>03.01.2017</h4>
|
||||
<hr>
|
||||
</div>
|
||||
<div class='main-content '>
|
||||
<p>Trio originaire des Alpes mais formé à Lyon. Le pianiste raconte en concert que cette chanson évoque un téléphérique qu'on peut prendre vers Chamonix, et les paysages qui défilent dessous. On les a vu en concert y'a pas longtemps avec Manon, et c'est louuuuurd</p>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
22
output/calypso-i.html
Normal file
22
output/calypso-i.html
Normal file
@ -0,0 +1,22 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
|
||||
<title>Playlist | Calypso I </title>
|
||||
<link rel="stylesheet" media="screen"
|
||||
href="/theme/css/main.css"
|
||||
type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="title-block">
|
||||
<h1>Calypso I</h1>
|
||||
<h4>03.01.2017</h4>
|
||||
<hr>
|
||||
</div>
|
||||
<div class='main-content '>
|
||||
<p>C'est un collègue de Villefranche qui m'a fait découvert ce rappeur, le plus grand fan au bas mot.</p>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
13
output/categories.html
Normal file
13
output/categories.html
Normal file
@ -0,0 +1,13 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
|
||||
<title>Playlist</title>
|
||||
<link rel="stylesheet" media="screen"
|
||||
href="/theme/css/main.css"
|
||||
type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
</body>
|
||||
</html>
|
41
output/category/bleutee.html
Normal file
41
output/category/bleutee.html
Normal file
@ -0,0 +1,41 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
|
||||
<title>Playlist | Bleutée </title>
|
||||
<link rel="stylesheet" media="screen"
|
||||
href="/theme/css/main.css"
|
||||
type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h2><a href="/calypso-i.html">Calypso I</a></h2>
|
||||
<bold>03.01.2017</bold>
|
||||
<p>---</p>
|
||||
<h2><a href="/life-wrote-itself.html">Life Wrote Itself</a></h2>
|
||||
<bold>03.01.2017</bold>
|
||||
<p>---</p>
|
||||
<h2><a href="/nothing-to-prove.html">Nothing To Prove</a></h2>
|
||||
<bold>03.01.2017</bold>
|
||||
<p>---</p>
|
||||
<h2><a href="/polyfilla.html">Polyfilla</a></h2>
|
||||
<bold>03.01.2017</bold>
|
||||
<p>---</p>
|
||||
<h2><a href="/red-room.html">Red Room</a></h2>
|
||||
<bold>03.01.2017</bold>
|
||||
<p>---</p>
|
||||
<h2><a href="/serious.html">Serious</a></h2>
|
||||
<bold>03.01.2017</bold>
|
||||
<p>---</p>
|
||||
<h2><a href="/silence.html">Silence</a></h2>
|
||||
<bold>03.01.2017</bold>
|
||||
<p>---</p>
|
||||
<h2><a href="/sometimes-i-sing-the-blues.html">Sometimes I Sing The Blues</a></h2>
|
||||
<bold>03.01.2017</bold>
|
||||
<p>---</p>
|
||||
<h2><a href="/thered-better-be-a-mirror-ball.html">There'd Better Be A Mirror Ball</a></h2>
|
||||
<bold>03.01.2017</bold>
|
||||
<p>---</p>
|
||||
|
||||
</body>
|
||||
</html>
|
44
output/category/orangee.html
Normal file
44
output/category/orangee.html
Normal file
@ -0,0 +1,44 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
|
||||
<title>Playlist | Orangée </title>
|
||||
<link rel="stylesheet" media="screen"
|
||||
href="/theme/css/main.css"
|
||||
type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h2><a href="/how-deep.html">how deep ?</a></h2>
|
||||
<bold>03.01.2017</bold>
|
||||
<p>---</p>
|
||||
<h2><a href="/how-it-feels.html">How It Feels</a></h2>
|
||||
<bold>03.01.2017</bold>
|
||||
<p>---</p>
|
||||
<h2><a href="/im-tight.html">I'm Tight</a></h2>
|
||||
<bold>03.01.2017</bold>
|
||||
<p>---</p>
|
||||
<h2><a href="/jfk2lax.html">JFK2LAX</a></h2>
|
||||
<bold>03.01.2017</bold>
|
||||
<p>---</p>
|
||||
<h2><a href="/life-goes-on.html">Life Goes On</a></h2>
|
||||
<bold>03.01.2017</bold>
|
||||
<p>---</p>
|
||||
<h2><a href="/life-i-live.html">Life I Live</a></h2>
|
||||
<bold>03.01.2017</bold>
|
||||
<p>---</p>
|
||||
<h2><a href="/matte-black.html">Matte Black</a></h2>
|
||||
<bold>03.01.2017</bold>
|
||||
<p>---</p>
|
||||
<h2><a href="/science.html">Science</a></h2>
|
||||
<bold>03.01.2017</bold>
|
||||
<p>---</p>
|
||||
<h2><a href="/the-ballad-of-dorothy-parker.html">The Ballad of Dorothy Parker</a></h2>
|
||||
<bold>03.01.2017</bold>
|
||||
<p>---</p>
|
||||
<h2><a href="/tomorrow-comes-the-harvest.html">Tomorrow Comes The Harvest</a></h2>
|
||||
<bold>03.01.2017</bold>
|
||||
<p>---</p>
|
||||
|
||||
</body>
|
||||
</html>
|
41
output/category/verdoyante.html
Normal file
41
output/category/verdoyante.html
Normal file
@ -0,0 +1,41 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
|
||||
<title>Playlist | Verdoyante </title>
|
||||
<link rel="stylesheet" media="screen"
|
||||
href="/theme/css/main.css"
|
||||
type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h2><a href="/call-of-the-mountains.html">Call of the Mountains</a></h2>
|
||||
<bold>03.01.2017</bold>
|
||||
<p>---</p>
|
||||
<h2><a href="/dribble.html">Dribble</a></h2>
|
||||
<bold>03.01.2017</bold>
|
||||
<p>---</p>
|
||||
<h2><a href="/everybody-loves-the-sunshine.html">Everybody loves the sunshine</a></h2>
|
||||
<bold>03.01.2017</bold>
|
||||
<p>---</p>
|
||||
<h2><a href="/fables-of-faubus.html">Fables of Faubus</a></h2>
|
||||
<bold>03.01.2017</bold>
|
||||
<p>---</p>
|
||||
<h2><a href="/kabily-touseg.html">Kabily-touseg</a></h2>
|
||||
<bold>03.01.2017</bold>
|
||||
<p>---</p>
|
||||
<h2><a href="/round-midnight.html">Round Midnight</a></h2>
|
||||
<bold>03.01.2017</bold>
|
||||
<p>---</p>
|
||||
<h2><a href="/space-samba.html">Space Samba</a></h2>
|
||||
<bold>03.01.2017</bold>
|
||||
<p>---</p>
|
||||
<h2><a href="/sweet-florence.html">Sweet Florence</a></h2>
|
||||
<bold>03.01.2017</bold>
|
||||
<p>---</p>
|
||||
<h2><a href="/the-world-might-fall-over.html">The World Might Fall Over</a></h2>
|
||||
<bold>03.01.2017</bold>
|
||||
<p>---</p>
|
||||
|
||||
</body>
|
||||
</html>
|
22
output/dribble.html
Normal file
22
output/dribble.html
Normal file
@ -0,0 +1,22 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
|
||||
<title>Playlist | Dribble </title>
|
||||
<link rel="stylesheet" media="screen"
|
||||
href="/theme/css/main.css"
|
||||
type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="title-block">
|
||||
<h1>Dribble</h1>
|
||||
<h4>03.01.2017</h4>
|
||||
<hr>
|
||||
</div>
|
||||
<div class='main-content '>
|
||||
<p>Ce pianiste canadien a sorti un album fin 2021, qui a fait le fond musical d'une bonne partie de mon année. J'adore la multiplicité des sons et des groove, tout se renouvelle à chaque seconde.</p>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
22
output/everybody-loves-the-sunshine.html
Normal file
22
output/everybody-loves-the-sunshine.html
Normal file
@ -0,0 +1,22 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
|
||||
<title>Playlist | Everybody loves the sunshine </title>
|
||||
<link rel="stylesheet" media="screen"
|
||||
href="/theme/css/main.css"
|
||||
type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="title-block">
|
||||
<h1>Everybody loves the sunshine</h1>
|
||||
<h4>03.01.2017</h4>
|
||||
<hr>
|
||||
</div>
|
||||
<div class='main-content '>
|
||||
<p>Version très épurée, qui fait magnifiquement ressortir la voix. Dans le même album, "Rising Son" est une des première chanson que j'ai essayé de jouer à la trompette.</p>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
22
output/fables-of-faubus.html
Normal file
22
output/fables-of-faubus.html
Normal file
@ -0,0 +1,22 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
|
||||
<title>Playlist | Fables of Faubus </title>
|
||||
<link rel="stylesheet" media="screen"
|
||||
href="/theme/css/main.css"
|
||||
type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="title-block">
|
||||
<h1>Fables of Faubus</h1>
|
||||
<h4>03.01.2017</h4>
|
||||
<hr>
|
||||
</div>
|
||||
<div class='main-content '>
|
||||
<p>Mon standard préféré de tous les temps, qui me fait penser à une BO de vieux film d'espion. Il y a un fond engagé à cette chanson, que je vous laisse découvrir.</p>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
27
output/fablesoffaubus.html
Normal file
27
output/fablesoffaubus.html
Normal file
@ -0,0 +1,27 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
|
||||
<title>playlist | Fables of Faubus </title>
|
||||
<link rel="stylesheet" media="screen"
|
||||
href="/theme/css/main.css"
|
||||
type="text/css" />
|
||||
<link rel="stylesheet" media="print"
|
||||
href="/theme/css/print.css" />
|
||||
<link rel='icon' href='/images/sun.png' type='images/png' />
|
||||
<link rel="alternate" type="application/rss+xml" title="theo lem"
|
||||
href="https://theo-lem.org/feeds/all.atom.xml" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="title-block">
|
||||
<h1>Fables of Faubus</h1>
|
||||
<h4>03.01.2017</h4>
|
||||
<hr>
|
||||
</div>
|
||||
<div class='main-content '>
|
||||
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
22
output/how-deep.html
Normal file
22
output/how-deep.html
Normal file
@ -0,0 +1,22 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
|
||||
<title>Playlist | how deep ? </title>
|
||||
<link rel="stylesheet" media="screen"
|
||||
href="/theme/css/main.css"
|
||||
type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="title-block">
|
||||
<h1>how deep ?</h1>
|
||||
<h4>03.01.2017</h4>
|
||||
<hr>
|
||||
</div>
|
||||
<div class='main-content '>
|
||||
<p>Une découverte au hasard d'internet, du groove qui casse la tête.</p>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
22
output/how-it-feels.html
Normal file
22
output/how-it-feels.html
Normal file
@ -0,0 +1,22 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
|
||||
<title>Playlist | How It Feels </title>
|
||||
<link rel="stylesheet" media="screen"
|
||||
href="/theme/css/main.css"
|
||||
type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="title-block">
|
||||
<h1>How It Feels</h1>
|
||||
<h4>03.01.2017</h4>
|
||||
<hr>
|
||||
</div>
|
||||
<div class='main-content '>
|
||||
<p>Un rappeur de Londres qui détonne par son côté chaleureux là où ses compères sont plutôt "crachin et doudoune". Son dernier EP "None The Wiser" est aussi très cool.</p>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
22
output/im-tight.html
Normal file
22
output/im-tight.html
Normal file
@ -0,0 +1,22 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
|
||||
<title>Playlist | I'm Tight </title>
|
||||
<link rel="stylesheet" media="screen"
|
||||
href="/theme/css/main.css"
|
||||
type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="title-block">
|
||||
<h1>I'm Tight</h1>
|
||||
<h4>03.01.2017</h4>
|
||||
<hr>
|
||||
</div>
|
||||
<div class='main-content '>
|
||||
<p>Un clip IMPORTANT et NÉCESSAIRE - Telerama</p>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
149
output/index.html
Normal file
149
output/index.html
Normal file
@ -0,0 +1,149 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
|
||||
<title>Playlist</title>
|
||||
<link rel="stylesheet" media="screen"
|
||||
href="/theme/css/main.css"
|
||||
type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="Bleutée column">
|
||||
<h1>Bleutée</h1>
|
||||
<ul>
|
||||
<li class="article">
|
||||
<a target="_blank" href="https://youtu.be/EpzKLMGEcHU">Calypso I </a> - Furax Barbarossa
|
||||
<span class="comment"><p>C'est un collègue de Villefranche qui m'a fait découvert ce rappeur, le plus grand fan au bas mot.</p></span>
|
||||
</li>
|
||||
<li class="article">
|
||||
<a target="_blank" href="https://youtu.be/c_5rYXz5aRM">Life Wrote Itself </a> - Chester Watson
|
||||
<span class="comment"><p>Un rappeur de St Louis que j'ai beaucoup écouté en cette fin d'année. L'écart entre son album "Tin Wooki", qui commence déjà à dater, et ce qu'il fait actuellement est assez impressionant : sa voix est plus profonde, sa production plus recherchée, mais son écriture toujours aussi fine et mystérieuse.</p></span>
|
||||
</li>
|
||||
<li class="article">
|
||||
<a target="_blank" href="https://youtu.be/68FMGZ9DKOU">Nothing To Prove </a> - Kae Tempest
|
||||
<span class="comment"><p>Tout son dernier album, tout en gros synthés profonds, est très beau. J'avais un peu du mal avec le côté "poésie déclamée" pendant un moment, mais le ton épique de l'album me le fait complètement oublier.</p></span>
|
||||
</li>
|
||||
<li class="article">
|
||||
<a target="_blank" href="https://youtu.be/pSUyBj_kek4">Polyfilla </a> - Loyle Carner
|
||||
<span class="comment"><p>Honnêtement, je recommande tout son album "hugo", et en fait toute sa carrière. Le petit tremblement dans sa voix me touche à chaque fois.</p></span>
|
||||
</li>
|
||||
<li class="article">
|
||||
<a target="_blank" href="https://www.youtube.com/watch?v=p46Tm9-7i7E">Red Room </a> - Hiatus Kaiyote
|
||||
<span class="comment"><p>Un groupe australien dont j'ai beaucoup écouté le premier album et qui n'avait rien sorti depuis presque 10 ans. On peut avoir du mal avec la voix de la chanteuse au début, mais elle fini par rester.</p></span>
|
||||
</li>
|
||||
<li class="article">
|
||||
<a target="_blank" href="https://youtu.be/-QljSw8HivU">Serious </a> - Mansur Brown
|
||||
<span class="comment"><p>Énorme guitariste de jazz londonien, avec un jeu très rythmique, qui crée des espaces vaporeux que personne n'avait jamais exploré.</p></span>
|
||||
</li>
|
||||
<li class="article">
|
||||
<a target="_blank" href="https://youtu.be/_YVdhiy7eRA">Silence </a> - Tuerie
|
||||
<span class="comment"><p>Un unique EP existe de ce rappeur, "Bleu Gospel", fait pour être écouté d'une traite. Je l'ai vu en concert à Vénissieux, il était tout gentil. Il est descendu dans le public pour parler de sa dépression, c'était trop beau, j'ai pleuré voilà.</p></span>
|
||||
</li>
|
||||
<li class="article">
|
||||
<a target="_blank" href="https://youtu.be/MBzsunzk9hY">Sometimes I Sing The Blues </a> - Spoek Mathambo
|
||||
<span class="comment"><p>Un album calme et étrange d'un producteur Sud-Africain. Les voix et samples me rendent toujours un peu mélancoliques, un peu comme avec un autre groupe : Space Afrika.</p></span>
|
||||
</li>
|
||||
<li class="article">
|
||||
<a target="_blank" href="https://youtu.be/FY5CAz6S9kE">There'd Better Be A Mirror Ball </a> - Arctic Monkeys
|
||||
<span class="comment"><p>Des fois je pense que j'aime ce groupe juste pour les titres de leurs chansons. Leur nouvel album est très calme, avec piano et orchestre, j'adore la production.</p></span>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="Orangée column">
|
||||
<h1>Orangée</h1>
|
||||
<ul>
|
||||
<li class="article">
|
||||
<a target="_blank" href="https://youtu.be/Dpuv0DVbYFA">how deep ? </a> - Tai Verdes
|
||||
<span class="comment"><p>Une découverte au hasard d'internet, du groove qui casse la tête.</p></span>
|
||||
</li>
|
||||
<li class="article">
|
||||
<a target="_blank" href="https://youtu.be/nkUKtE1CD7k">How It Feels </a> - Sam Wise
|
||||
<span class="comment"><p>Un rappeur de Londres qui détonne par son côté chaleureux là où ses compères sont plutôt "crachin et doudoune". Son dernier EP "None The Wiser" est aussi très cool.</p></span>
|
||||
</li>
|
||||
<li class="article">
|
||||
<a target="_blank" href="https://youtu.be/u9XrWB-u1vc">I'm Tight </a> - Louis Cole
|
||||
<span class="comment"><p>Un clip IMPORTANT et NÉCESSAIRE - Telerama</p></span>
|
||||
</li>
|
||||
<li class="article">
|
||||
<a target="_blank" href="https://youtu.be/Z47I4tQtQV4">JFK2LAX </a> - Gang Starr
|
||||
<span class="comment"><p>Un groupe mythique de rap des années 90 que j'avais complètement raté jusqu'à cette année.</p></span>
|
||||
</li>
|
||||
<li class="article">
|
||||
<a target="_blank" href="https://youtu.be/9sS-QEyLycs">Life Goes On </a> - Ezra Collective
|
||||
<span class="comment"><p>Un album de jazz londonien pétri d'afrobeat qui tue. Venez on va les voir.</p></span>
|
||||
</li>
|
||||
<li class="article">
|
||||
<a target="_blank" href="https://youtu.be/I9wp09cmEO4">Life I Live </a> - Pete Rock
|
||||
<span class="comment"><p>Pete Rock, J. Dilla, Gang Starr, Black Star : tout plein de groupes de rap underground des années 90 que j'ai découvert grâce à mon coloc-slash-encyclopédie du rap Safa.</p></span>
|
||||
</li>
|
||||
<li class="article">
|
||||
<a target="_blank" href="https://youtu.be/gdEe_lXsULg">Matte Black </a> - $uicideboy$
|
||||
<span class="comment"><p>Je sais toujours pas sur quel ton prendre le côté "flingues gang cagoules flingues flingues" de leur esthétique, mais ce son m'a eu. À chaque fois que j'entend le passage "But I'm shi-ning baby girl WILD-ING" j'ai envie de casser un truc.</p></span>
|
||||
</li>
|
||||
<li class="article">
|
||||
<a target="_blank" href="https://youtu.be/Ppdan_oizvc">Science </a> - Burna Boy
|
||||
<span class="comment"><p>Le dernier album de la superstar nigériane, écouté en boucle sur la route cette été.</p></span>
|
||||
</li>
|
||||
<li class="article">
|
||||
<a target="_blank" href="https://youtu.be/5nrdZfBShDU">The Ballad of Dorothy Parker </a> - Prince
|
||||
<span class="comment"><p>Ça a été mon année Prince, j'ai découvert sa musique et son personnage. Celle-ci par exemple, une histoire racontée avec beaucoup d'autodérision.</p></span>
|
||||
</li>
|
||||
<li class="article">
|
||||
<a target="_blank" href="https://youtu.be/UoeBCPptWxE">Tomorrow Comes The Harvest </a> - Tony Allen & Jeff Mills
|
||||
<span class="comment"><p>Un mariage improbable entre un producteur de techno de Detroit et le batteur de Fela Kuti, fondateur de l'afrobeat (REP).</p></span>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
<div class="Verdoyante column">
|
||||
<h1>Verdoyante</h1>
|
||||
<ul>
|
||||
<li class="article">
|
||||
<a target="_blank" href="https://youtu.be/34N_63yglDY">Call of the Mountains </a> - Foehn Trio
|
||||
<span class="comment"><p>Trio originaire des Alpes mais formé à Lyon. Le pianiste raconte en concert que cette chanson évoque un téléphérique qu'on peut prendre vers Chamonix, et les paysages qui défilent dessous. On les a vu en concert y'a pas longtemps avec Manon, et c'est louuuuurd</p></span>
|
||||
</li>
|
||||
<li class="article">
|
||||
<a target="_blank" href="https://youtu.be/QLDeUebGpfQ">Dribble </a> - Anomalie
|
||||
<span class="comment"><p>Ce pianiste canadien a sorti un album fin 2021, qui a fait le fond musical d'une bonne partie de mon année. J'adore la multiplicité des sons et des groove, tout se renouvelle à chaque seconde.</p></span>
|
||||
</li>
|
||||
<li class="article">
|
||||
<a target="_blank" href="https://youtu.be/lZ8zu1aRYA8">Everybody loves the sunshine </a> - Takuya Kuroda
|
||||
<span class="comment"><p>Version très épurée, qui fait magnifiquement ressortir la voix. Dans le même album, "Rising Son" est une des première chanson que j'ai essayé de jouer à la trompette.</p></span>
|
||||
</li>
|
||||
<li class="article">
|
||||
<a target="_blank" href="https://youtu.be/48eAYnfgrAo">Fables of Faubus </a> - Charles Mingus
|
||||
<span class="comment"><p>Mon standard préféré de tous les temps, qui me fait penser à une BO de vieux film d'espion. Il y a un fond engagé à cette chanson, que je vous laisse découvrir.</p></span>
|
||||
</li>
|
||||
<li class="article">
|
||||
<a target="_blank" href="https://youtu.be/H3Ieuj4pssQ">Kabily-touseg </a> - Mougar
|
||||
<span class="comment"><p>À la fusion de la musique folk et kabyle, une énergie de fou.</p></span>
|
||||
</li>
|
||||
<li class="article">
|
||||
<a target="_blank" href="https://youtu.be/MOm17yw__6U">Round Midnight </a> - Wes Montgomery
|
||||
<span class="comment"><p>J'ai menti c'est ça mon standard préféré.</p></span>
|
||||
</li>
|
||||
<li class="article">
|
||||
<a target="_blank" href="https://youtu.be/QzhmE-LHEOw">Space Samba </a> - Lydian Collective
|
||||
<span class="comment"><p>Le premier album pleinement produit d'un groupe qui s'était surtout fait connaître avec des vidéos intimistes dans leur studio. Ils arrivent parfois à avoir un son de jeu de Gameboy bizarrement addictif.</p></span>
|
||||
</li>
|
||||
<li class="article">
|
||||
<a target="_blank" href="https://youtu.be/9ncso3viNug">Sweet Florence </a> - Jacob Desvarieux
|
||||
<span class="comment"><p>Super chanson du guitariste guadeloupéen (REP).</p></span>
|
||||
</li>
|
||||
<li class="article">
|
||||
<a target="_blank" href="https://www.youtube.com/watch?v=4aMv6l28hx8">The World Might Fall Over </a> - Monomono
|
||||
<span class="comment"><p>Tiré de la BO de la saison 3 d'Atlanta, puits sans fond de découvertes musicales stylées.</p></span>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
</body>
|
||||
</html>
|
22
output/jenvoie-valser.html
Normal file
22
output/jenvoie-valser.html
Normal file
@ -0,0 +1,22 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
|
||||
<title>Playlist | J'envoie valser </title>
|
||||
<link rel="stylesheet" media="screen"
|
||||
href="/theme/css/main.css"
|
||||
type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="title-block">
|
||||
<h1>J'envoie valser</h1>
|
||||
<h4>03.01.2017</h4>
|
||||
<hr>
|
||||
</div>
|
||||
<div class='main-content '>
|
||||
<p>Quoi ?</p>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
22
output/jfk2lax.html
Normal file
22
output/jfk2lax.html
Normal file
@ -0,0 +1,22 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
|
||||
<title>Playlist | JFK2LAX </title>
|
||||
<link rel="stylesheet" media="screen"
|
||||
href="/theme/css/main.css"
|
||||
type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="title-block">
|
||||
<h1>JFK2LAX</h1>
|
||||
<h4>03.01.2017</h4>
|
||||
<hr>
|
||||
</div>
|
||||
<div class='main-content '>
|
||||
<p>Un groupe mythique de rap des années 90 que j'avais complètement raté jusqu'à cette année.</p>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
22
output/kabily-touseg.html
Normal file
22
output/kabily-touseg.html
Normal file
@ -0,0 +1,22 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
|
||||
<title>Playlist | Kabily-touseg </title>
|
||||
<link rel="stylesheet" media="screen"
|
||||
href="/theme/css/main.css"
|
||||
type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="title-block">
|
||||
<h1>Kabily-touseg</h1>
|
||||
<h4>03.01.2017</h4>
|
||||
<hr>
|
||||
</div>
|
||||
<div class='main-content '>
|
||||
<p>À la fusion de la musique folk et kabyle, une énergie de fou.</p>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
22
output/life-goes-on.html
Normal file
22
output/life-goes-on.html
Normal file
@ -0,0 +1,22 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
|
||||
<title>Playlist | Life Goes On </title>
|
||||
<link rel="stylesheet" media="screen"
|
||||
href="/theme/css/main.css"
|
||||
type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="title-block">
|
||||
<h1>Life Goes On</h1>
|
||||
<h4>03.01.2017</h4>
|
||||
<hr>
|
||||
</div>
|
||||
<div class='main-content '>
|
||||
<p>Un album de jazz londonien pétri d'afrobeat qui tue. Venez on va les voir.</p>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
22
output/life-i-live.html
Normal file
22
output/life-i-live.html
Normal file
@ -0,0 +1,22 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
|
||||
<title>Playlist | Life I Live </title>
|
||||
<link rel="stylesheet" media="screen"
|
||||
href="/theme/css/main.css"
|
||||
type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="title-block">
|
||||
<h1>Life I Live</h1>
|
||||
<h4>03.01.2017</h4>
|
||||
<hr>
|
||||
</div>
|
||||
<div class='main-content '>
|
||||
<p>Pete Rock, J. Dilla, Gang Starr, Black Star : tout plein de groupes de rap underground des années 90 que j'ai découvert grâce à mon coloc-slash-encyclopédie du rap Safa.</p>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
22
output/life-wrote-itself.html
Normal file
22
output/life-wrote-itself.html
Normal file
@ -0,0 +1,22 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
|
||||
<title>Playlist | Life Wrote Itself </title>
|
||||
<link rel="stylesheet" media="screen"
|
||||
href="/theme/css/main.css"
|
||||
type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="title-block">
|
||||
<h1>Life Wrote Itself</h1>
|
||||
<h4>03.01.2017</h4>
|
||||
<hr>
|
||||
</div>
|
||||
<div class='main-content '>
|
||||
<p>Un rappeur de St Louis que j'ai beaucoup écouté en cette fin d'année. L'écart entre son album "Tin Wooki", qui commence déjà à dater, et ce qu'il fait actuellement est assez impressionant : sa voix est plus profonde, sa production plus recherchée, mais son écriture toujours aussi fine et mystérieuse.</p>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
22
output/matte-black.html
Normal file
22
output/matte-black.html
Normal file
@ -0,0 +1,22 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
|
||||
<title>Playlist | Matte Black </title>
|
||||
<link rel="stylesheet" media="screen"
|
||||
href="/theme/css/main.css"
|
||||
type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="title-block">
|
||||
<h1>Matte Black</h1>
|
||||
<h4>03.01.2017</h4>
|
||||
<hr>
|
||||
</div>
|
||||
<div class='main-content '>
|
||||
<p>Je sais toujours pas sur quel ton prendre le côté "flingues gang cagoules flingues flingues" de leur esthétique, mais ce son m'a eu. À chaque fois que j'entend le passage "But I'm shi-ning baby girl WILD-ING" j'ai envie de casser un truc.</p>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
22
output/nothing-to-prove.html
Normal file
22
output/nothing-to-prove.html
Normal file
@ -0,0 +1,22 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
|
||||
<title>Playlist | Nothing To Prove </title>
|
||||
<link rel="stylesheet" media="screen"
|
||||
href="/theme/css/main.css"
|
||||
type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="title-block">
|
||||
<h1>Nothing To Prove</h1>
|
||||
<h4>03.01.2017</h4>
|
||||
<hr>
|
||||
</div>
|
||||
<div class='main-content '>
|
||||
<p>Tout son dernier album, tout en gros synthés profonds, est très beau. J'avais un peu du mal avec le côté "poésie déclamée" pendant un moment, mais le ton épique de l'album me le fait complètement oublier.</p>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
22
output/polyfilla.html
Normal file
22
output/polyfilla.html
Normal file
@ -0,0 +1,22 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
|
||||
<title>Playlist | Polyfilla </title>
|
||||
<link rel="stylesheet" media="screen"
|
||||
href="/theme/css/main.css"
|
||||
type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="title-block">
|
||||
<h1>Polyfilla</h1>
|
||||
<h4>03.01.2017</h4>
|
||||
<hr>
|
||||
</div>
|
||||
<div class='main-content '>
|
||||
<p>Honnêtement, je recommande tout son album "hugo", et en fait toute sa carrière. Le petit tremblement dans sa voix me touche à chaque fois.</p>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
22
output/red-room.html
Normal file
22
output/red-room.html
Normal file
@ -0,0 +1,22 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
|
||||
<title>Playlist | Red Room </title>
|
||||
<link rel="stylesheet" media="screen"
|
||||
href="/theme/css/main.css"
|
||||
type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="title-block">
|
||||
<h1>Red Room</h1>
|
||||
<h4>03.01.2017</h4>
|
||||
<hr>
|
||||
</div>
|
||||
<div class='main-content '>
|
||||
<p>Un groupe australien dont j'ai beaucoup écouté le premier album et qui n'avait rien sorti depuis presque 10 ans. On peut avoir du mal avec la voix de la chanteuse au début, mais elle fini par rester.</p>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
22
output/round-midnight.html
Normal file
22
output/round-midnight.html
Normal file
@ -0,0 +1,22 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
|
||||
<title>Playlist | Round Midnight </title>
|
||||
<link rel="stylesheet" media="screen"
|
||||
href="/theme/css/main.css"
|
||||
type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="title-block">
|
||||
<h1>Round Midnight</h1>
|
||||
<h4>03.01.2017</h4>
|
||||
<hr>
|
||||
</div>
|
||||
<div class='main-content '>
|
||||
<p>J'ai menti c'est ça mon standard préféré.</p>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
22
output/science.html
Normal file
22
output/science.html
Normal file
@ -0,0 +1,22 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
|
||||
<title>Playlist | Science </title>
|
||||
<link rel="stylesheet" media="screen"
|
||||
href="/theme/css/main.css"
|
||||
type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="title-block">
|
||||
<h1>Science</h1>
|
||||
<h4>03.01.2017</h4>
|
||||
<hr>
|
||||
</div>
|
||||
<div class='main-content '>
|
||||
<p>Le dernier album de la superstar nigériane, écouté en boucle sur la route cette été.</p>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
22
output/serious.html
Normal file
22
output/serious.html
Normal file
@ -0,0 +1,22 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
|
||||
<title>Playlist | Serious </title>
|
||||
<link rel="stylesheet" media="screen"
|
||||
href="/theme/css/main.css"
|
||||
type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="title-block">
|
||||
<h1>Serious</h1>
|
||||
<h4>03.01.2017</h4>
|
||||
<hr>
|
||||
</div>
|
||||
<div class='main-content '>
|
||||
<p>Énorme guitariste de jazz londonien, avec un jeu très rythmique, qui crée des espaces vaporeux que personne n'avait jamais exploré.</p>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
22
output/silence.html
Normal file
22
output/silence.html
Normal file
@ -0,0 +1,22 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
|
||||
<title>Playlist | Silence </title>
|
||||
<link rel="stylesheet" media="screen"
|
||||
href="/theme/css/main.css"
|
||||
type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="title-block">
|
||||
<h1>Silence</h1>
|
||||
<h4>03.01.2017</h4>
|
||||
<hr>
|
||||
</div>
|
||||
<div class='main-content '>
|
||||
<p>Un unique EP existe de ce rappeur, "Bleu Gospel", fait pour être écouté d'une traite. Je l'ai vu en concert à Vénissieux, il était tout gentil. Il est descendu dans le public pour parler de sa dépression, c'était trop beau, j'ai pleuré voilà.</p>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
22
output/sometimes-i-sing-the-blues.html
Normal file
22
output/sometimes-i-sing-the-blues.html
Normal file
@ -0,0 +1,22 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
|
||||
<title>Playlist | Sometimes I Sing The Blues </title>
|
||||
<link rel="stylesheet" media="screen"
|
||||
href="/theme/css/main.css"
|
||||
type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="title-block">
|
||||
<h1>Sometimes I Sing The Blues</h1>
|
||||
<h4>03.01.2017</h4>
|
||||
<hr>
|
||||
</div>
|
||||
<div class='main-content '>
|
||||
<p>Un album calme et étrange d'un producteur Sud-Africain. Les voix et samples me rendent toujours un peu mélancoliques, un peu comme avec un autre groupe : Space Afrika.</p>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
22
output/space-samba.html
Normal file
22
output/space-samba.html
Normal file
@ -0,0 +1,22 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
|
||||
<title>Playlist | Space Samba </title>
|
||||
<link rel="stylesheet" media="screen"
|
||||
href="/theme/css/main.css"
|
||||
type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="title-block">
|
||||
<h1>Space Samba</h1>
|
||||
<h4>03.01.2017</h4>
|
||||
<hr>
|
||||
</div>
|
||||
<div class='main-content '>
|
||||
<p>Le premier album pleinement produit d'un groupe qui s'était surtout fait connaître avec des vidéos intimistes dans leur studio. Ils arrivent parfois à avoir un son de jeu de Gameboy bizarrement addictif.</p>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
22
output/sweet-florence.html
Normal file
22
output/sweet-florence.html
Normal file
@ -0,0 +1,22 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
|
||||
<title>Playlist | Sweet Florence </title>
|
||||
<link rel="stylesheet" media="screen"
|
||||
href="/theme/css/main.css"
|
||||
type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="title-block">
|
||||
<h1>Sweet Florence</h1>
|
||||
<h4>03.01.2017</h4>
|
||||
<hr>
|
||||
</div>
|
||||
<div class='main-content '>
|
||||
<p>Super chanson du guitariste guadeloupéen (REP).</p>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
0
output/tags.html
Normal file
0
output/tags.html
Normal file
22
output/the-ballad-of-dorothy-parker.html
Normal file
22
output/the-ballad-of-dorothy-parker.html
Normal file
@ -0,0 +1,22 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
|
||||
<title>Playlist | The Ballad of Dorothy Parker </title>
|
||||
<link rel="stylesheet" media="screen"
|
||||
href="/theme/css/main.css"
|
||||
type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="title-block">
|
||||
<h1>The Ballad of Dorothy Parker</h1>
|
||||
<h4>03.01.2017</h4>
|
||||
<hr>
|
||||
</div>
|
||||
<div class='main-content '>
|
||||
<p>Ça a été mon année Prince, j'ai découvert sa musique et son personnage. Celle-ci par exemple, une histoire racontée avec beaucoup d'autodérision.</p>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
22
output/the-world-might-fall-over.html
Normal file
22
output/the-world-might-fall-over.html
Normal file
@ -0,0 +1,22 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
|
||||
<title>Playlist | The World Might Fall Over </title>
|
||||
<link rel="stylesheet" media="screen"
|
||||
href="/theme/css/main.css"
|
||||
type="text/css" />
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<div class="title-block">
|
||||
<h1>The World Might Fall Over</h1>
|
||||
<h4>03.01.2017</h4>
|
||||
<hr>
|
||||
</div>
|
||||
<div class='main-content '>
|
||||
<p>Tiré de la BO de la saison 3 d'Atlanta, puits sans fond de découvertes musicales stylées.</p>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
76
output/theme/css/main.css
Normal file
76
output/theme/css/main.css
Normal file
@ -0,0 +1,76 @@
|
||||
@font-face {
|
||||
font-family: karrik;
|
||||
src: url('/themes/playlist/static/fonts/karrik/Karrik-Regular.ttf');
|
||||
}
|
||||
|
||||
body {
|
||||
max-width: 100vw;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
font-family: 'karrik', sans-serif;
|
||||
height: 100vh;
|
||||
margin: 0%;
|
||||
background-color: black;
|
||||
}
|
||||
|
||||
.column {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.column ul {
|
||||
font-size: 1.5em;
|
||||
}
|
||||
|
||||
ul {
|
||||
list-style-type: circle;
|
||||
}
|
||||
|
||||
li {
|
||||
padding: .5em;
|
||||
}
|
||||
|
||||
.column a {
|
||||
text-decoration: none;
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
.column a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.article .comment {
|
||||
visibility: hidden;
|
||||
background-color: black;
|
||||
color: #fff;
|
||||
text-align: center;
|
||||
padding: 1em;
|
||||
border-radius: 6px;
|
||||
|
||||
position: absolute;
|
||||
z-index: 1;
|
||||
opacity: 80%;
|
||||
|
||||
max-width: 20em;
|
||||
}
|
||||
|
||||
.article:hover .comment{
|
||||
visibility: visible;
|
||||
}
|
||||
|
||||
.Bleutée {
|
||||
width: 30em;
|
||||
padding: 2%;
|
||||
background-color: #84b4e2;
|
||||
}
|
||||
|
||||
.Orangée {
|
||||
width: 30em;
|
||||
padding: 2%;
|
||||
background-color: #f5b53e;
|
||||
}
|
||||
|
||||
.Verdoyante {
|
||||
width: 30em;
|
||||
padding: 2%;
|
||||
background-color: #7bd96c;
|
||||
}
|
BIN
output/theme/fonts/karrik/Karrik-Italic.ttf
Normal file
BIN
output/theme/fonts/karrik/Karrik-Italic.ttf
Normal file
Binary file not shown.
BIN
output/theme/fonts/karrik/Karrik-Regular.ttf
Normal file
BIN
output/theme/fonts/karrik/Karrik-Regular.ttf
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user