work in progress
11
.htaccess
Normal file
@@ -0,0 +1,11 @@
|
||||
RewriteEngine On
|
||||
|
||||
# 1. Rediriger l'index.html vers la racine (évite le duplicate content)
|
||||
RewriteCond %{THE_REQUEST} /index\.html [NC]
|
||||
RewriteRule ^(.*)index\.html$ /$1 [L,R=301]
|
||||
|
||||
# 2. Supprimer l'extension .html des URLs
|
||||
# Permet d'accéder à site.com/about au lieu de site.com/about.html
|
||||
RewriteCond %{REQUEST_FILENAME} !-d
|
||||
RewriteCond %{REQUEST_FILENAME}\.html -f
|
||||
RewriteRule ^(.*)$ $1.html [NC,L]
|
||||
60
about.html
@@ -7,34 +7,40 @@
|
||||
<link rel="stylesheet" href="style.css">
|
||||
</head>
|
||||
<body class="site-frame">
|
||||
<header>
|
||||
<nav>
|
||||
<div class="logo">
|
||||
<a href="index.html">
|
||||
<img src="assets/img/logo.png" alt="REDSCAPEFACTORY">
|
||||
</a>
|
||||
</div>
|
||||
<ul class="nav-links">
|
||||
<li><a href="index.html">Home</a></li>
|
||||
|
||||
<header>
|
||||
<nav>
|
||||
<div class="logo">
|
||||
<a href="index.html"><img src="assets/img/logo.png" alt="REDSCAPEFACTORY"></a>
|
||||
</div>
|
||||
<ul>
|
||||
<li class="dropdown">
|
||||
<a href="index.html">Music</a>
|
||||
<ul class="submenu">
|
||||
<li><a href="music/asceptic-siliceum.html">Asceptic Siliceum</a></li>
|
||||
<li><a href="music/asceptic.html">Asceptic</a></li>
|
||||
<li><a href="music/arisi-namaz.html">Arisi Namaz</a></li>
|
||||
<li><a href="music/physicalscience.html">PHYSICALSCIENCE</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="dropdown">
|
||||
<a href="#">Others</a>
|
||||
<ul class="submenu">
|
||||
<li><a href="../podcasts.html">Podcasts</a></li>
|
||||
<li><a href="composer.html">Composer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="gallery.html">Gallery</a></li>
|
||||
<li><a href="about.html">About</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
<li class="has-dropdown">
|
||||
<a href="#">Music</a>
|
||||
<ul class="dropdown">
|
||||
<li><a href="music/asceptic-siliceum.html">Asceptic Siliceum</a></li>
|
||||
<li><a href="music/asceptic.html">Asceptic</a></li>
|
||||
<li><a href="music/arisi-namaz.html">Arisi Namaz</a></li>
|
||||
<li><a href="music/physicalscience.html">PHYSICALSCIENCE</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
<li class="has-dropdown">
|
||||
<a href="#">Others</a>
|
||||
<ul class="dropdown">
|
||||
<li><a href="podcasts.html">Podcasts</a></li>
|
||||
<li><a href="composer.html">Composer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
<li><a href="gallery.html">Gallery</a></li>
|
||||
<li><a href="about.html">About</a></li>
|
||||
<li><a href="contact.html">Contact</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<main class="about-page">
|
||||
<div class="project-container">
|
||||
|
||||
BIN
assets/.DS_Store
vendored
BIN
assets/gallery/.DS_Store
vendored
Normal file
BIN
assets/gallery/1.jpg
Normal file
|
After Width: | Height: | Size: 55 KiB |
BIN
assets/gallery/2.jpg
Normal file
|
After Width: | Height: | Size: 93 KiB |
BIN
assets/gallery/3.JPG
Normal file
|
After Width: | Height: | Size: 446 KiB |
BIN
assets/gallery/4.WEBP
Normal file
|
After Width: | Height: | Size: 8.7 KiB |
BIN
assets/gallery/5.jpeg
Normal file
|
After Width: | Height: | Size: 2.1 MiB |
BIN
assets/gallery/6.jpeg
Normal file
|
After Width: | Height: | Size: 2.2 MiB |
BIN
assets/gallery/7.jpeg
Normal file
|
After Width: | Height: | Size: 1.7 MiB |
BIN
assets/gallery/8.jpeg
Normal file
|
After Width: | Height: | Size: 2.3 MiB |
BIN
assets/img/.DS_Store
vendored
BIN
assets/img/abyssales-cover.jpg
Normal file
|
After Width: | Height: | Size: 438 KiB |
BIN
assets/img/favicon.png
Normal file
|
After Width: | Height: | Size: 5.4 KiB |
BIN
assets/img/live-preview.png
Normal file
|
After Width: | Height: | Size: 17 KiB |
|
Before Width: | Height: | Size: 34 KiB After Width: | Height: | Size: 46 KiB |
|
Before Width: | Height: | Size: 48 KiB |
BIN
assets/img/tkst.png
Normal file
|
After Width: | Height: | Size: 828 KiB |
63
contact.html
Normal file
@@ -0,0 +1,63 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Contact | REDSCAPEFACTORY</title>
|
||||
<link rel="stylesheet" href="style.css">
|
||||
<link rel="icon" type="image/png" href="assets/img/favicon.png">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header>
|
||||
<nav>
|
||||
<div class="logo">
|
||||
<a href="index.html"><img src="assets/img/logo.png" alt="REDSCAPEFACTORY"></a>
|
||||
</div>
|
||||
<ul class="nav-links">
|
||||
<li><a href="index.html">Home</a></li>
|
||||
<li><a href="music.html">Music</a></li>
|
||||
<li><a href="podcasts.html">Podcasts</a></li>
|
||||
<li><a href="gallery.html">Gallery</a></li>
|
||||
<li><a href="about.html">About</a></li>
|
||||
<li><a href="contact.html" class="active">Contact</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<main class="contact-page">
|
||||
<section class="project-intro-section">
|
||||
<div class="brand-line"><span>GET IN TOUCH</span></div>
|
||||
<h1>Contact</h1>
|
||||
<p class="intro-text">
|
||||
Pour toute demande de collaboration, production de podcast ou simple message, utilisez les liens ci-dessous.
|
||||
</p>
|
||||
</section>
|
||||
|
||||
<section class="contact-container">
|
||||
<div class="contact-grid">
|
||||
<div class="contact-method">
|
||||
<h3>Email</h3>
|
||||
<a href="mailto:hello@redscapefactory.com" class="contact-link">hello@redscapefactory.com</a>
|
||||
</div>
|
||||
|
||||
<div class="contact-method">
|
||||
<h3>Follow</h3>
|
||||
<ul class="social-list">
|
||||
<li><a href="#">Instagram</a></li>
|
||||
<li><a href="#">SoundCloud</a></li>
|
||||
<li><a href="#">Bandcamp</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<div class="footer-wrapper">
|
||||
<p>© 2026 REDSCAPEFACTORY</p>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
120
gallery.html
@@ -1,32 +1,94 @@
|
||||
<main class="gallery-page">
|
||||
<section class="project-intro-section">
|
||||
<div class="brand-line">
|
||||
<span>VISUAL ARCHIVE</span>
|
||||
</div>
|
||||
<h1>Gallery</h1>
|
||||
<p class="intro-text">
|
||||
Fragments of industrial landscapes, studio sessions, and visual experiments
|
||||
related to the REDSCAPEFACTORY universe.
|
||||
</p>
|
||||
</section>
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Gallery | REDSCAPEFACTORY</title>
|
||||
<link rel="stylesheet" href="style.css">
|
||||
<link rel="icon" type="image/png" href="assets/img/favicon.png">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<nav>
|
||||
<div class="logo">
|
||||
<a href="index.html">
|
||||
<img src="assets/img/logo.png" alt="REDSCAPEFACTORY">
|
||||
</a>
|
||||
</div>
|
||||
<ul class="nav-links">
|
||||
<li><a href="index.html">Home</a></li>
|
||||
|
||||
<section class="gallery-container">
|
||||
<div class="gallery-grid">
|
||||
<div class="gallery-item">
|
||||
<a href="assets/img/gallery/photo1-large.jpg" target="_blank">
|
||||
<img src="assets/img/gallery/photo1-thumb.jpg" alt="Description">
|
||||
</a>
|
||||
<li class="has-dropdown">
|
||||
<a href="#">Music</a>
|
||||
<ul class="dropdown">
|
||||
<li><a href="music/asceptic-siliceum.html">Asceptic Siliceum</a></li>
|
||||
<li><a href="music/asceptic.html">Asceptic</a></li>
|
||||
<li><a href="music/arisi-namaz.html">Arisi Namaz</a></li>
|
||||
<li><a href="music/physicalscience.html">PHYSICALSCIENCE</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
<li class="has-dropdown">
|
||||
<a href="#">Others</a>
|
||||
<ul class="dropdown">
|
||||
<li><a href="podcasts.html">Podcasts</a></li>
|
||||
<li><a href="composer.html">Composer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
<li><a href="gallery.html">Gallery</a></li>
|
||||
<li><a href="about.html">About</a></li>
|
||||
<li><a href="contact.html">Contact</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<main class="gallery-page">
|
||||
<section class="project-intro-section">
|
||||
<div class="brand-line">
|
||||
<span>VISUAL ARCHIVE</span>
|
||||
</div>
|
||||
<div class="gallery-item">
|
||||
<a href="assets/img/gallery/photo2-large.jpg" target="_blank">
|
||||
<img src="assets/img/gallery/photo2-thumb.jpg" alt="Description">
|
||||
</a>
|
||||
<h1>Gallery</h1>
|
||||
<p class="intro-text">
|
||||
Fragments of industrial landscapes, studio sessions, and visual experiments related to the REDSCAPEFACTORY universe.
|
||||
</p>
|
||||
</section>
|
||||
|
||||
<section class="gallery-container">
|
||||
<div class="gallery-grid">
|
||||
<div class="gallery-item">
|
||||
<img src="assets/gallery/1.jpg" alt="PodRennes 2023">
|
||||
</div>
|
||||
<div class="gallery-item">
|
||||
<img src="assets/gallery/2.jpg" alt="PodRennes 2023>
|
||||
</div>
|
||||
<div class="gallery-item">
|
||||
<img src="assets/gallery/3.jpg" alt="PodRennes 2023">
|
||||
</div>
|
||||
<div class="gallery-item">
|
||||
<img src="assets/gallery/4.WEBP" alt="PodRennes 2023">
|
||||
</div>
|
||||
<div class="gallery-item">
|
||||
<img src="assets/gallery/5.jpEg" alt="Chez wam">
|
||||
</div>
|
||||
<div class="gallery-item">
|
||||
<img src="assets/gallery/6.jpEg" alt="Session">
|
||||
</div>
|
||||
<div class="gallery-item">
|
||||
<img src="assets/gallery/7.jpEg" alt="Clavier MIDI">
|
||||
</div>
|
||||
<div class="gallery-item">
|
||||
<img src="assets/gallery/8.jpEg" alt="Mon installation - Février 2024>
|
||||
</div>
|
||||
</div>
|
||||
<div class="gallery-item tall">
|
||||
<a href="assets/img/gallery/photo3-large.jpg" target="_blank">
|
||||
<img src="assets/img/gallery/photo3-thumb.jpg" alt="Description">
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
<div class="footer-wrapper">
|
||||
<p>© 2026 REDSCAPEFACTORY - Code Alpha 2026</p>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
72
index.html
@@ -3,38 +3,52 @@
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>REDSCAPEFACTORY | Home</title>
|
||||
<title>RedscapeFactory | The Factory Of Sounds</title>
|
||||
<meta property="og:type" content="website">
|
||||
<meta property="og:url" content="https://redscapefactory.com/">
|
||||
<meta property="og:title" content="RedscapeFactory">
|
||||
<meta property="og:description" content="The Factory Of Sounds">
|
||||
<meta property="og:image" content="https://redscapefactory.com/assets/img/live-preview.png">
|
||||
<meta property="og:site_name" content="REDSCAPEFACTORY">
|
||||
<link rel="stylesheet" href="style.css">
|
||||
<link rel="icon" type="image/png" href="assets/img/favicon.png">
|
||||
<link rel="icon" type="image/png" href="assets/img/favicon.png?v=2">
|
||||
<link rel="apple-touch-icon" href="assets/img/favicon.png">
|
||||
</head>
|
||||
<body class="site-frame"> <header>
|
||||
<nav>
|
||||
<div class="logo">
|
||||
<a href="index.html"><img src="assets/img/logo.png" alt="REDSCAPEFACTORY"></a>
|
||||
</div>
|
||||
<ul>
|
||||
<li class="dropdown">
|
||||
<a href="index.html">Music</a>
|
||||
<ul class="submenu">
|
||||
<li><a href="music/asceptic-siliceum.html">Asceptic Siliceum</a></li>
|
||||
<li><a href="music/asceptic.html">Asceptic</a></li>
|
||||
<li><a href="music/arisi-namaz.html">Arisi Namaz</a></li>
|
||||
<li><a href="music/physicalscience.html">PHYSICALSCIENCE</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="dropdown">
|
||||
<a href="#">Others</a>
|
||||
<ul class="submenu">
|
||||
<li><a href="podcasts.html">Podcasts</a></li>
|
||||
<li><a href="composer.html">Composer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="gallery.html">Gallery</a></li>
|
||||
<li><a href="about.html">About</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
<body class="site-frame">
|
||||
<header>
|
||||
<nav>
|
||||
<div class="logo">
|
||||
<a href="index.html">
|
||||
<img src="assets/img/logo.png" alt="REDSCAPEFACTORY">
|
||||
</a>
|
||||
</div>
|
||||
<ul class="nav-links">
|
||||
<li><a href="index.html">Home</a></li>
|
||||
|
||||
<li class="has-dropdown">
|
||||
<a href="#">Music</a>
|
||||
<ul class="dropdown">
|
||||
<li><a href="music/asceptic-siliceum.html">Asceptic Siliceum</a></li>
|
||||
<li><a href="music/asceptic.html">Asceptic</a></li>
|
||||
<li><a href="music/arisi-namaz.html">Arisi Namaz</a></li>
|
||||
<li><a href="music/physicalscience.html">PHYSICALSCIENCE</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
<li class="has-dropdown">
|
||||
<a href="#">Others</a>
|
||||
<ul class="dropdown">
|
||||
<li><a href="podcasts.html">Podcasts</a></li>
|
||||
<li><a href="composer.html">Composer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
<li><a href="gallery.html">Gallery</a></li>
|
||||
<li><a href="about.html">About</a></li>
|
||||
<li><a href="contact.html">Contact</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
<section class="home-hero">
|
||||
|
||||
@@ -0,0 +1,53 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Arisi Namaz | REDSCAPEFACTORY</title>
|
||||
<link rel="stylesheet" href="../style.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<nav>
|
||||
<div class="logo">
|
||||
<a href="../index.html">
|
||||
<img src="../assets/img/logo.png" alt="REDSCAPEFACTORY">
|
||||
</a>
|
||||
</div>
|
||||
<ul class="nav-links">
|
||||
<li><a href="../index.html">Home</a></li>
|
||||
|
||||
<li class="has-dropdown">
|
||||
<a href="#">Music</a>
|
||||
<ul class="dropdown">
|
||||
<li><a href="../music/asceptic-siliceum.html">Asceptic Siliceum</a></li>
|
||||
<li><a href="../music/asceptic.html">Asceptic</a></li>
|
||||
<li><a href="../music/arisi-namaz.html">Arisi Namaz</a></li>
|
||||
<li><a href="../music/physicalscience.html">PHYSICALSCIENCE</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
<li class="has-dropdown">
|
||||
<a href="#">Others</a>
|
||||
<ul class="dropdown">
|
||||
<li><a href="../podcasts.html">Podcasts</a></li>
|
||||
<li><a href="../composer.html">Composer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
<li><a href="../gallery.html">Gallery</a></li>
|
||||
<li><a href="../about.html">About</a></li>
|
||||
<li><a href="../contact.html">Contact</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<main class="single-project-main">
|
||||
<section class="project-intro-section">
|
||||
<div class="brand-line">
|
||||
<span>ARISI NAMAZ</span>
|
||||
</div>
|
||||
<p class="intro-text">
|
||||
Arisi Namaz is the anagram of maiden name Redscape mother. With this project, it's a progressive house style
|
||||
</p>
|
||||
</section>
|
||||
@@ -8,23 +8,38 @@
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<nav>
|
||||
<div class="logo">
|
||||
<a href="../index.html"><img src="../assets/img/logo.png" alt="REDSCAPEFACTORY" style="height: 40px;"></a>
|
||||
</div>
|
||||
<ul>
|
||||
<li><a href="../index.html">Music</a></li>
|
||||
<li class="dropdown">
|
||||
<a href="#">Others</a>
|
||||
<ul class="submenu">
|
||||
<li><a href="../podcasts.html">Podcasts</a></li>
|
||||
<li><a href="../composer.html">Composer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="../gallery.html">Gallery</a></li>
|
||||
<li><a href="../about.html">About</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<nav>
|
||||
<div class="logo">
|
||||
<a href="../index.html">
|
||||
<img src="../assets/img/logo.png" alt="REDSCAPEFACTORY">
|
||||
</a>
|
||||
</div>
|
||||
<ul class="nav-links">
|
||||
<li><a href="../index.html">Home</a></li>
|
||||
|
||||
<li class="has-dropdown">
|
||||
<a href="#">Music</a>
|
||||
<ul class="dropdown">
|
||||
<li><a href="../music/asceptic-siliceum.html">Asceptic Siliceum</a></li>
|
||||
<li><a href="../music/asceptic.html">Asceptic</a></li>
|
||||
<li><a href="../music/arisi-namaz.html">Arisi Namaz</a></li>
|
||||
<li><a href="../music/physicalscience.html">PHYSICALSCIENCE</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
<li class="has-dropdown">
|
||||
<a href="#">Others</a>
|
||||
<ul class="dropdown">
|
||||
<li><a href="../podcasts.html">Podcasts</a></li>
|
||||
<li><a href="../composer.html">Composer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
<li><a href="../gallery.html">Gallery</a></li>
|
||||
<li><a href="../about.html">About</a></li>
|
||||
<li><a href="../contact.html">Contact</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<main class="single-project-main">
|
||||
|
||||
@@ -8,23 +8,38 @@
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<nav>
|
||||
<div class="logo">
|
||||
<a href="../index.html"><img src="../assets/img/logo.png" alt="REDSCAPEFACTORY" style="height: 40px;"></a>
|
||||
</div>
|
||||
<ul>
|
||||
<li><a href="../index.html">Music</a></li>
|
||||
<li class="dropdown">
|
||||
<a href="#">Others</a>
|
||||
<ul class="submenu">
|
||||
<li><a href="../podcasts.html">Podcasts</a></li>
|
||||
<li><a href="../composer.html">Composer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="../gallery.html">Gallery</a></li>
|
||||
<li><a href="../about.html">About</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
<nav>
|
||||
<div class="logo">
|
||||
<a href="../index.html">
|
||||
<img src="../assets/img/logo.png" alt="REDSCAPEFACTORY">
|
||||
</a>
|
||||
</div>
|
||||
<ul class="nav-links">
|
||||
<li><a href="../index.html">Home</a></li>
|
||||
|
||||
<li class="has-dropdown">
|
||||
<a href="#">Music</a>
|
||||
<ul class="dropdown">
|
||||
<li><a href="../music/asceptic-siliceum.html">Asceptic Siliceum</a></li>
|
||||
<li><a href="../music/asceptic.html">Asceptic</a></li>
|
||||
<li><a href="../music/arisi-namaz.html">Arisi Namaz</a></li>
|
||||
<li><a href="../music/physicalscience.html">PHYSICALSCIENCE</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
<li class="has-dropdown">
|
||||
<a href="#">Others</a>
|
||||
<ul class="dropdown">
|
||||
<li><a href="../podcasts.html">Podcasts</a></li>
|
||||
<li><a href="../composer.html">Composer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
<li><a href="../gallery.html">Gallery</a></li>
|
||||
<li><a href="../about.html">About</a></li>
|
||||
<li><a href="../contact.html">Contact</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<main class="single-project-main">
|
||||
|
||||
@@ -0,0 +1,34 @@
|
||||
<header>
|
||||
<nav>
|
||||
<div class="logo">
|
||||
<a href="../index.html">
|
||||
<img src="../assets/img/logo.png" alt="REDSCAPEFACTORY">
|
||||
</a>
|
||||
</div>
|
||||
<ul class="nav-links">
|
||||
<li><a href="../index.html">Home</a></li>
|
||||
|
||||
<li class="has-dropdown">
|
||||
<a href="#">Music</a>
|
||||
<ul class="dropdown">
|
||||
<li><a href="../music/asceptic-siliceum.html">Asceptic Siliceum</a></li>
|
||||
<li><a href="../music/asceptic.html">Asceptic</a></li>
|
||||
<li><a href="../music/arisi-namaz.html">Arisi Namaz</a></li>
|
||||
<li><a href="../music/physicalscience.html">PHYSICALSCIENCE</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
<li class="has-dropdown">
|
||||
<a href="#">Others</a>
|
||||
<ul class="dropdown">
|
||||
<li><a href="../podcasts.html">Podcasts</a></li>
|
||||
<li><a href="../composer.html">Composer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
<li><a href="../gallery.html">Gallery</a></li>
|
||||
<li><a href="../about.html">About</a></li>
|
||||
<li><a href="../contact.html">Contact</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
143
podcasts.html
@@ -6,33 +6,42 @@
|
||||
<title>REDSCAPEFACTORY | Home</title>
|
||||
<link rel="stylesheet" href="style.css">
|
||||
</head>
|
||||
<body class="site-frame"> <header>
|
||||
<nav>
|
||||
<div class="logo">
|
||||
<a href="index.html"><img src="assets/img/logo.png" alt="REDSCAPEFACTORY"></a>
|
||||
</div>
|
||||
<ul>
|
||||
<li class="dropdown">
|
||||
<a href="index.html">Music</a>
|
||||
<ul class="submenu">
|
||||
<li><a href="music/asceptic-siliceum.html">Asceptic Siliceum</a></li>
|
||||
<li><a href="music/asceptic.html">Asceptic</a></li>
|
||||
<li><a href="music/arisi-namaz.html">Arisi Namaz</a></li>
|
||||
<li><a href="music/physicalscience.html">PHYSICALSCIENCE</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li class="dropdown">
|
||||
<a href="#">Others</a>
|
||||
<ul class="submenu">
|
||||
<li><a href="podcasts.html">Podcasts</a></li>
|
||||
<li><a href="composer.html">Composer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="gallery.html">Gallery</a></li>
|
||||
<li><a href="about.html">About</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
<body class="site-frame">
|
||||
|
||||
<header>
|
||||
<nav>
|
||||
<div class="logo">
|
||||
<a href="index.html">
|
||||
<img src="assets/img/logo.png" alt="REDSCAPEFACTORY">
|
||||
</a>
|
||||
</div>
|
||||
<ul class="nav-links">
|
||||
<li><a href="index.html">Home</a></li>
|
||||
|
||||
<li class="has-dropdown">
|
||||
<a href="#">Music</a>
|
||||
<ul class="dropdown">
|
||||
<li><a href="music/asceptic-siliceum.html">Asceptic Siliceum</a></li>
|
||||
<li><a href="music/asceptic.html">Asceptic</a></li>
|
||||
<li><a href="music/arisi-namaz.html">Arisi Namaz</a></li>
|
||||
<li><a href="music/physicalscience.html">PHYSICALSCIENCE</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
<li class="has-dropdown">
|
||||
<a href="#">Others</a>
|
||||
<ul class="dropdown">
|
||||
<li><a href="podcasts.html">Podcasts</a></li>
|
||||
<li><a href="composer.html">Composer</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
<li><a href="gallery.html">Gallery</a></li>
|
||||
<li><a href="about.html">About</a></li>
|
||||
<li><a href="contact.html">Contact</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<main class="podcasts-main">
|
||||
<section class="project-intro-section">
|
||||
@@ -49,58 +58,82 @@
|
||||
<div class="podcasts-grid">
|
||||
|
||||
<a href="podcasts/le-trajet.html" class="podcast-card">
|
||||
<img src="assets/img/le-trajet.jpg" alt="Le Trajet">
|
||||
<div class="podcast-overlay">
|
||||
<h3>Le Trajet</h3>
|
||||
<span class="view-btn">VIEW SERIES</span>
|
||||
<div class="podcast-image-wrapper">
|
||||
<img src="assets/img/le-trajet.jpg" alt="Le Trajet">
|
||||
</div>
|
||||
<div class="podcast-info">
|
||||
<h3>Le Trajet - 2019</h3>
|
||||
<p>Podcast d'un seul épisode</p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<a href="podcasts/hors-sons.html" class="podcast-card">
|
||||
<img src="assets/img/hors-sons.jpg" alt="Hors Sons">
|
||||
<div class="podcast-overlay">
|
||||
<h3>Hors Sons</h3>
|
||||
<span class="view-btn">VIEW SERIES</span>
|
||||
<div class="podcast-image-wrapper">
|
||||
<img src="assets/img/hors-sons.jpg" alt="Hors Sons">
|
||||
</div>
|
||||
<div class="podcast-info">
|
||||
<h3>Hors Sons - 2022</h3>
|
||||
<p>Un regard sur l'actualité, tout en sons</p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<a href="podcasts/tkst.html" class="podcast-card">
|
||||
<img src="assets/img/tkst.jpg" alt="Le TechCast">
|
||||
<div class="podcast-overlay">
|
||||
<h3>Le TechCast</h3>
|
||||
<span class="view-btn">VIEW SERIES</span>
|
||||
<div class="podcast-image-wrapper">
|
||||
<img src="assets/img/tkst.png" alt="TKST">
|
||||
</div>
|
||||
<div class="podcast-info">
|
||||
<h3>Le TechCast - 2012</h3>
|
||||
<p>Le podcast de l'act tech & gaming</p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<a href="podcasts/efl.html" class="podcast-card">
|
||||
<img src="assets/img/efl.jpg" alt="En Flux Libre">
|
||||
<div class="podcast-overlay">
|
||||
<h3>En Flux Libre</h3>
|
||||
<span class="view-btn">VIEW SERIES</span>
|
||||
<div class="podcast-image-wrapper">
|
||||
<img src="assets/img/efl.jpg" alt="En Flux Libre">
|
||||
</div>
|
||||
<div class="podcast-info">
|
||||
<h3>En Flux Libre - 2011-2012</h3>
|
||||
<p>L'actualité de Linux et du logiciel libre</p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<a href="podcasts/psa.html" class="podcast-card">
|
||||
<img src="assets/img/psa.jpg" alt="Parlons Sport Auto">
|
||||
<div class="podcast-overlay">
|
||||
<h3>Parlons Sport Auto</h3>
|
||||
<span class="view-btn">VIEW SERIES</span>
|
||||
<div class="podcast-image-wrapper">
|
||||
<img src="assets/img/psa.jpg" alt="Parlons Sport Auto">
|
||||
</div>
|
||||
<div class="podcast-info">
|
||||
<h3>Parlons Sport Auto - 2016-2020 - Quentin & RedscapeFactory</h3>
|
||||
<p>Du sport auto, un sujet et des chroniqueurs pour en débattre</p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<a href="https://asoundmr.com/LES-ABYSSALES" class="podcast-card">
|
||||
<div class="podcast-image-wrapper">
|
||||
<img src="assets/img/abyssales-cover.jpg" alt="LesAbyssales">
|
||||
</div>
|
||||
<div class="podcast-info">
|
||||
<h3>LesAbyssales - 2014-</h3>
|
||||
<p>Le Podcast de toutes les musiques électroniques</p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<a href="podcasts/lida.html" class="podcast-card">
|
||||
<img src="assets/img/lida.jpg" alt="L'Invité">
|
||||
<div class="podcast-overlay">
|
||||
<h3>L'Invité</h3>
|
||||
<span class="view-btn">VIEW SERIES</span>
|
||||
<div class="podcast-image-wrapper">
|
||||
<img src="assets/img/lida.jpg" alt="L'Invité">
|
||||
</div>
|
||||
<div class="podcast-info">
|
||||
<h3>L'invité des Abyssales - 2015-2020</h3>
|
||||
<p>Spin-off des Abyssales centré sur un invité.</p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
<a href="podcasts/dsp.html" class="podcast-card">
|
||||
<img src="assets/img/dsp.jpg" alt="Deep Sea Project">
|
||||
<div class="podcast-overlay">
|
||||
<h3>Deep Sea Project</h3>
|
||||
<span class="view-btn">VIEW SERIES</span>
|
||||
<div class="podcast-image-wrapper">
|
||||
<img src="assets/img/dsp.jpg" alt="Deep Sea Project">
|
||||
</div>
|
||||
<div class="podcast-info">
|
||||
<h3>Deep Sea Project - 2017-2020</h3>
|
||||
<p>Spin-off des Abyssales centré sur les musique électroniques extrêmes.</p>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
|
||||
BIN
podcasts/.DS_Store
vendored
2
podcasts/deepseaproject/episodes.json
Normal file
@@ -0,0 +1,2 @@
|
||||
[
|
||||
]
|
||||
5
podcasts/deepseaproject/podcast.json
Normal file
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"title": "Deep Sea Project",
|
||||
"description": "Production Redscape Factory",
|
||||
"copyright": "REDSCAPEFACTORY"
|
||||
}
|
||||
@@ -1,81 +1,115 @@
|
||||
#!/bin/bash
|
||||
|
||||
# 1. CONFIGURATION
|
||||
RSS_FILE="deepseaproject/rss"
|
||||
LAYOUT_FILE="layout.txt"
|
||||
ENCLOSURE_DIR="deepseaproject/enclosure"
|
||||
EPISODE_DIR="deepseaproject/episodes"
|
||||
IMAGE_DIR="deepseaproject/images"
|
||||
# --- CONFIGURATION À ADAPTER ---
|
||||
# Exemple pour le Deep Sea Project
|
||||
PODCAST_NAME="deepseaproject"
|
||||
RSS_URL="$PODCAST_NAME/rss"
|
||||
# Le dossier racine de ton site (à adapter si besoin)
|
||||
BASE_DIR="$PODCAST_NAME"
|
||||
# Le dossier spécifique du podcast
|
||||
WORKING_DIR="podcasts/$PODCAST_NAME"
|
||||
|
||||
# Création des dossiers
|
||||
mkdir -p "$IMAGE_DIR" "$EPISODE_DIR" "$ENCLOSURE_DIR" temp_items
|
||||
## DOSSIERS INTERNES
|
||||
IMAGE_DIR="$WORKING_DIR/images"
|
||||
EPISODE_DIR="$WORKING_DIR/episodes"
|
||||
ENCLOSURE_DIR="$WORKING_DIR/enclosure"
|
||||
EPISODE_JSON="$WORKING_DIR/episodes.json"
|
||||
|
||||
echo "Analyse du flux RSS..."
|
||||
# Chemins relatifs pour le HTML (on est dans podcasts/nom/episodes/)
|
||||
# On doit remonter de 3 niveaux pour la racine : ../../../
|
||||
REL_PATH="../../../"
|
||||
|
||||
# 1. Découpage (Méthode Bash pure pour éviter les erreurs awk/csplit sur Mac)
|
||||
count=0
|
||||
inside=false
|
||||
while IFS= read -r line || [ -n "$line" ]; do
|
||||
if [[ "$line" == *"<item>"* ]]; then
|
||||
inside=true
|
||||
count=$((count + 1))
|
||||
echo "<item>" > "temp_items/item_$count.xml"
|
||||
continue
|
||||
fi
|
||||
if [[ "$line" == *"</item>"* ]]; then
|
||||
echo "</item>" >> "temp_items/item_$count.xml"
|
||||
inside=false
|
||||
continue
|
||||
fi
|
||||
if [ "$inside" = true ]; then
|
||||
echo "$line" >> "temp_items/item_$count.xml"
|
||||
fi
|
||||
done < "$RSS_FILE"
|
||||
mkdir -p "$IMAGE_DIR" "$EPISODE_DIR" "$ENCLOSURE_DIR"
|
||||
|
||||
# 2. Traitement
|
||||
for f in temp_items/item_*.xml; do
|
||||
[ -e "$f" ] || continue
|
||||
# Nettoyage JSON compatible Mac
|
||||
clean_json_text() {
|
||||
echo "$1" | sed 's/<!\[CDATA\[//g; s/\]\]>//g; s/\\/\\\\/g; s/"/\\"/g' | tr -d '\n' | tr -d '\r'
|
||||
}
|
||||
|
||||
# Extraction brute
|
||||
TITLE=$(grep "<title>" "$f" | sed -e 's/<!\[CDATA\[//g' -e 's/\]\]>//g' -e 's/.*<title>\(.*\)<\/title>.*/\1/' | xargs)
|
||||
# Téléchargement du flux RSS en local pour le traitement
|
||||
curl -L -s -o "temp_rss.xml" "$RSS_URL"
|
||||
|
||||
# On capture l'URL entre les guillemets de url="..."
|
||||
REMOTE_AUDIO=$(sed -n 's/.*url="\([^"]*\)".*/\1/p' "$f" | head -n 1)
|
||||
REMOTE_COVER=$(sed -n 's/.*href="\([^"]*\)".*/\1/p' "$f" | head -n 1)
|
||||
echo "--- DÉBUT DU TRAITEMENT : $PODCAST_NAME ---"
|
||||
|
||||
ID=$(echo "$TITLE" | tr '[:upper:]' '[:lower:]' | iconv -f UTF-8 -t ASCII//TRANSLIT | sed "s/[^a-z0-9]/-/g; s/--*/-/g; s/^-//; s/-$//")
|
||||
# 1. Découpage des items sans csplit (via AWK)
|
||||
awk '/<item>/{n++}{print > "item_" n ".xml"}' temp_rss.xml
|
||||
|
||||
echo "--- Épisode : $TITLE ---"
|
||||
echo "[" > "$EPISODE_JSON"
|
||||
FIRST_ITEM=true
|
||||
|
||||
# TELECHARGEMENT (La partie critique)
|
||||
if [ -n "$REMOTE_AUDIO" ]; then
|
||||
echo " > Récupération du média..."
|
||||
# On utilise des doubles guillemets pour protéger l'URL
|
||||
# On ajoute -k (ignore certificats si besoin) et -L (redirection)
|
||||
curl -L -s -o "$REMOTE_AUDIO" -o "$ENCLOSURE_DIR/$ID.mp3"
|
||||
for f in item_*.xml; do
|
||||
# On saute le premier fichier s'il ne contient pas d'item (en-tête du flux)
|
||||
if ! grep -q "<item>" "$f"; then rm "$f"; continue; fi
|
||||
|
||||
# VERIFICATION IMMEDIATE
|
||||
if [ -f "$ENCLOSURE_DIR/$ID.mp3" ]; then
|
||||
SIZE=$(stat -f%z "$ENCLOSURE_DIR/$ID.mp3" 2>/dev/null || stat -c%s "$ENCLOSURE_DIR/$ID.mp3" 2>/dev/null)
|
||||
echo " [OK] Taille : $SIZE octets"
|
||||
else
|
||||
echo " [!] ERREUR : Le fichier n'a pas été créé."
|
||||
fi
|
||||
fi
|
||||
# Extraction des données
|
||||
TITLE=$(grep "<title>" "$f" | sed 's/.*<title><!\[CDATA\[\(.*\)\]\]><\/title>.*/\1/')
|
||||
PUBDATE=$(grep "<pubDate>" "$f" | sed 's/.*<pubDate>\(.*\)<\/pubDate>.*/\1/' | cut -d',' -f2 | cut -d':' -f1,2)
|
||||
REMOTE_AUDIO=$(grep "<enclosure" "$f" | sed 's/.*url="\([^"]*\)".*/\1/')
|
||||
REMOTE_COVER=$(grep "itunes:image" "$f" | sed 's/.*href="\([^"]*\)".*/\1/')
|
||||
|
||||
# GENERATION HTML
|
||||
DESC_HTML=$(sed -n '/<description>/,/<\/description>/p' "$f" | sed -e 's/<description>//g' -e 's/<\/description>//g' -e 's/<!\[CDATA\[//g' -e 's/\]\]>//g' | tr -d '\n\r')
|
||||
# ID / Slug
|
||||
ID=$(echo "$TITLE" | tr '[:upper:]' '[:lower:]' | sed "s/[^a-z0-9]/-/g; s/--*/-/g; s/^-//; s/-$//")
|
||||
|
||||
python3 -c "
|
||||
import sys
|
||||
with open('$LAYOUT_FILE', 'r') as l: data = l.read()
|
||||
data = data.replace('[[TITLE]]', \"$TITLE\")
|
||||
data = data.replace('[[CONTENT]]', \"\"\"$DESC_HTML\"\"\")
|
||||
data = data.replace('[[AUDIO]]', '../enclosure/$ID.mp3')
|
||||
data = data.replace('[[IMAGE]]', '../images/$ID.jpg')
|
||||
with open('$EPISODE_DIR/$ID.html', 'w') as out: out.write(data)
|
||||
"
|
||||
echo " > Episode : $ID"
|
||||
|
||||
# Téléchargement AUDIO (Ajout de -L pour les redirections et -k au cas où)
|
||||
curl -Lk -s -o "$ENCLOSURE_DIR/$ID.mp3" "$REMOTE_AUDIO"
|
||||
# Téléchargement IMAGE
|
||||
curl -Lk -s -o "$IMAGE_DIR/$ID.jpg" "$REMOTE_COVER"
|
||||
|
||||
# Description
|
||||
DESC_HTML=$(sed -n '/<description>/,/<\/description>/p' "$f" | sed -e 's/<description>//g' -e 's/<\/description>//g' -e 's/<!\[CDATA\[//g' -e 's/\]\]>//g')
|
||||
|
||||
# --- GÉNÉRATION HTML ---
|
||||
cat <<EOF > "$EPISODE_DIR/$ID.html"
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>$TITLE | REDSCAPEFACTORY</title>
|
||||
<link rel="stylesheet" href="${REL_PATH}style.css">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<nav>
|
||||
<div class="logo"><a href="${REL_PATH}index.html"><img src="${REL_PATH}assets/img/logo.png"></a></div>
|
||||
<ul class="nav-links">
|
||||
<li><a href="${REL_PATH}index.html">Home</a></li>
|
||||
<li><a href="${REL_PATH}podcasts.html">Podcasts</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
<main class="project-container">
|
||||
<section class="project-info">
|
||||
<div class="brand-line"><span>$PODCAST_NAME</span> • $PUBDATE</div>
|
||||
<h1>$TITLE</h1>
|
||||
<div class="audio-player-box">
|
||||
<audio controls><source src="../enclosure/$ID.mp3" type="audio/mpeg"></audio>
|
||||
</div>
|
||||
<div class="description">$DESC_HTML</div>
|
||||
<a href="${REL_PATH}podcasts.html" class="back-link">← RETOUR</a>
|
||||
</section>
|
||||
<section class="project-visual"><img src="../images/$ID.jpg"></section>
|
||||
</main>
|
||||
</body>
|
||||
</html>
|
||||
EOF
|
||||
|
||||
# JSON
|
||||
if [ "$FIRST_ITEM" = false ]; then echo "," >> "$EPISODE_JSON"; fi
|
||||
cat <<EOF >> "$EPISODE_JSON"
|
||||
{
|
||||
"id": "$ID",
|
||||
"title": "$(clean_json_text "$TITLE")",
|
||||
"audio": "enclosure/$ID.mp3",
|
||||
"cover": "images/$ID.jpg",
|
||||
"file": "episodes/$ID.html"
|
||||
}
|
||||
EOF
|
||||
FIRST_ITEM=false
|
||||
rm "$f"
|
||||
done
|
||||
|
||||
rm -rf temp_items
|
||||
echo "Terminé."
|
||||
echo "]" >> "$EPISODE_JSON"
|
||||
rm temp_rss.xml
|
||||
echo "--- TERMINÉ ---"
|
||||
@@ -1,75 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="fr">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>[[TITLE]] | REDSCAPEFACTORY</title>
|
||||
<link rel="stylesheet" href="../../../style.css">
|
||||
</head>
|
||||
<body class="site-frame">
|
||||
|
||||
<header>
|
||||
<nav>
|
||||
<div class="logo">
|
||||
<a href="../../../index.html"><img src="../../../assets/img/logo.svg" alt="REDSCAPEFACTORY"></a>
|
||||
</div>
|
||||
<ul>
|
||||
<li class="dropdown">
|
||||
<a href="../../../index.html">Music</a>
|
||||
<ul class="submenu">
|
||||
<li><a href="../../../music/asceptic-siliceum.html">Asceptic Siliceum</a></li>
|
||||
<li><a href="../../../music/asceptic.html">Asceptic</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
<li><a href="../../../podcasts.html">Podcasts</a></li>
|
||||
<li><a href="../../../about.html">About</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
<main class="single-project-main">
|
||||
<section class="project-container">
|
||||
<div class="project-info">
|
||||
<div class="project-brand-label">EPISODE</div>
|
||||
<h1>[[TITLE]]</h1>
|
||||
|
||||
<div class="description">
|
||||
[[CONTENT]]
|
||||
</div>
|
||||
|
||||
<div class="audio-player-box">
|
||||
<span class="label">ÉCOUTER L'ÉPISODE</span>
|
||||
<audio controls>
|
||||
<source src="[[AUDIO]]" type="audio/mpeg">
|
||||
Votre navigateur ne supporte pas l'élément audio.
|
||||
</audio>
|
||||
</div>
|
||||
|
||||
<a href="../../enfluxlibre.html" class="back-link">← Retour à la série</a>
|
||||
</div>
|
||||
|
||||
<div class="project-visual">
|
||||
<img src="[[IMAGE]]" alt="[[TITLE]]">
|
||||
</div>
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<div class="footer-wrapper">
|
||||
<footer class="zake-footer">
|
||||
<div class="footer-col">
|
||||
<h4>CONTACT</h4>
|
||||
<p><a href="mailto:contact@redscapefactory.com">Email</a></p>
|
||||
</div>
|
||||
<div class="footer-col">
|
||||
<h4>FOLLOW</h4>
|
||||
<p><a href="#">Bandcamp</a> / <a href="#">Instagram</a></p>
|
||||
</div>
|
||||
<div class="footer-col">
|
||||
<h4>© 2026</h4>
|
||||
<p>REDSCAPEFACTORY</p>
|
||||
</div>
|
||||
</footer>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
2
podcasts/podcasts/deepseaproject/episodes.json
Normal file
@@ -0,0 +1,2 @@
|
||||
[
|
||||
]
|
||||
328
style.css
@@ -1,3 +1,7 @@
|
||||
html {
|
||||
scroll-behavior: smooth;
|
||||
}
|
||||
|
||||
/* ==========================================
|
||||
1. BASES & TYPOGRAPHIE (Le look "classe")
|
||||
========================================== */
|
||||
@@ -9,11 +13,19 @@
|
||||
--accent-color: #ffffff;
|
||||
}
|
||||
|
||||
::selection {
|
||||
background: #333; /* Un gris acier */
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
min-height: 100vh;
|
||||
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
|
||||
background-color: var(--bg-color);
|
||||
color: var(--text-color);
|
||||
@@ -22,13 +34,17 @@ body {
|
||||
-webkit-font-smoothing: antialiased;
|
||||
}
|
||||
|
||||
main {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
/* ==========================================
|
||||
2. HEADER & NAVIGATION (Blanc pur)
|
||||
2. HEADER & NAVIGATION
|
||||
========================================== */
|
||||
header {
|
||||
background-color: var(--bg-color);
|
||||
border-bottom: 1px solid var(--border-color);
|
||||
padding: 30px 40px; /* On augmente légèrement le padding vertical */
|
||||
padding: 10px 40px;
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 1000;
|
||||
@@ -41,49 +57,112 @@ nav {
|
||||
}
|
||||
|
||||
.logo img {
|
||||
height: 60px; /* On double presque la taille (était à 35px) */
|
||||
height: 60px;
|
||||
width: auto;
|
||||
display: block;
|
||||
transition: transform 0.3s ease;
|
||||
}
|
||||
|
||||
.logo img:hover {
|
||||
transform: scale(1.02);
|
||||
}
|
||||
|
||||
nav ul {
|
||||
list-style: none;
|
||||
/* Configuration de la liste principale */
|
||||
.nav-links {
|
||||
display: flex;
|
||||
list-style: none;
|
||||
gap: 30px;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
nav a {
|
||||
/* Style des liens principaux */
|
||||
.nav-links > li > a {
|
||||
text-decoration: none;
|
||||
color: var(--accent-color);
|
||||
text-transform: uppercase;
|
||||
font-size: 0.65rem;
|
||||
letter-spacing: 2px;
|
||||
font-weight: 600;
|
||||
position: relative;
|
||||
padding-bottom: 5px;
|
||||
}
|
||||
|
||||
/* Dropdown */
|
||||
.dropdown { position: relative; }
|
||||
.submenu {
|
||||
display: none;
|
||||
/* Effet de soulignement (uniquement sur les liens principaux) */
|
||||
.nav-links > li > a::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
width: 0;
|
||||
height: 1px;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
background-color: var(--accent-color);
|
||||
transition: width 0.3s ease;
|
||||
}
|
||||
|
||||
.nav-links > li:hover > a::after {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/* --- Gestion du Dropdown --- */
|
||||
.has-dropdown {
|
||||
position: relative; /* Référentiel pour le sous-menu */
|
||||
}
|
||||
|
||||
.dropdown {
|
||||
position: absolute;
|
||||
top: 100%;
|
||||
left: 0;
|
||||
background: #1a1a1a;
|
||||
background-color: #000;
|
||||
border: 1px solid var(--border-color);
|
||||
list-style: none;
|
||||
padding: 15px 0;
|
||||
min-width: 180px;
|
||||
padding: 8px 0; /* Réduit (était à 15px) */
|
||||
margin: 0;
|
||||
min-width: 200px; /* Plus étroit */
|
||||
display: none;
|
||||
z-index: 999;
|
||||
list-style: none; /* FORCE la suppression du point/puce */
|
||||
}
|
||||
|
||||
/* On s'assure que les éléments internes n'ont pas de puce non plus */
|
||||
.dropdown li {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/* On crée un "pont" invisible pour que la souris ne quitte jamais la zone active */
|
||||
.has-dropdown::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 100%;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 35px; /* Doit correspondre à la distance à combler */
|
||||
display: block;
|
||||
}
|
||||
|
||||
/* Affiche au survol */
|
||||
.has-dropdown:hover .dropdown {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.dropdown li a {
|
||||
padding: 8px 20px; /* Moins d'espace vertical pour un menu plus fin */
|
||||
display: block;
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
font-size: 0.7rem; /* Taille plus discrète */
|
||||
letter-spacing: 1px;
|
||||
text-transform: uppercase;
|
||||
transition: background 0.3s;
|
||||
}
|
||||
|
||||
.dropdown li a:hover {
|
||||
background-color: #111;
|
||||
color: var(--accent-color);
|
||||
}
|
||||
|
||||
/* On désactive l'effet de soulignement dans le sous-menu */
|
||||
.dropdown li a::after {
|
||||
display: none;
|
||||
}
|
||||
.submenu li { padding: 5px 20px; }
|
||||
.submenu a { font-size: 0.6rem; letter-spacing: 1px; }
|
||||
.dropdown:hover .submenu { display: block; }
|
||||
|
||||
/* ==========================================
|
||||
3. STRUCTURES DE PAGES (Centrage & Largeur)
|
||||
@@ -106,16 +185,20 @@ nav a {
|
||||
}
|
||||
|
||||
.hero-container {
|
||||
display: grid;
|
||||
display: flex;
|
||||
grid-template-columns: 1fr 1.1fr;
|
||||
gap: 80px;
|
||||
align-items: center;
|
||||
align-items: stretch;
|
||||
}
|
||||
|
||||
.hero-description {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between; /* Centre le texte verticalement par rapport à l'image */
|
||||
font-size: 1.1rem;
|
||||
font-weight: 300;
|
||||
line-height: 1.8;
|
||||
margin: 0; /* Nettoie les marges par défaut */
|
||||
}
|
||||
|
||||
.hero-visual img {
|
||||
@@ -125,8 +208,8 @@ nav a {
|
||||
|
||||
/* Liste Projets Horizontale */
|
||||
.home-projects-list {
|
||||
padding: 60px 40px;
|
||||
margin-bottom: 40px;
|
||||
padding: 60px 40px 20px 40px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.projects-horizontal-container {
|
||||
@@ -182,7 +265,7 @@ nav a {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1.2fr;
|
||||
gap: 100px; /* Aération entre texte et image */
|
||||
padding: 0 40px 120px 40px;
|
||||
padding: 0 40px 6cm 40px;
|
||||
align-items: start;
|
||||
}
|
||||
|
||||
@@ -252,7 +335,7 @@ nav a {
|
||||
.zake-footer { grid-template-columns: 1fr; gap: 40px; }
|
||||
}
|
||||
|
||||
/* --- Grille des Podcasts (Covers) --- */
|
||||
/* --- Grille des Podcasts Unifiée --- */
|
||||
.podcasts-grid-container {
|
||||
max-width: 1200px;
|
||||
margin: 0 auto 100px auto;
|
||||
@@ -261,125 +344,160 @@ nav a {
|
||||
|
||||
.podcasts-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
|
||||
gap: 30px;
|
||||
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
|
||||
gap: 40px;
|
||||
padding: 60px 0;
|
||||
}
|
||||
|
||||
.podcast-card {
|
||||
position: relative;
|
||||
display: block;
|
||||
overflow: hidden;
|
||||
background: #000;
|
||||
border: 1px solid var(--border-color);
|
||||
text-decoration: none;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
transition: border-color 0.3s ease;
|
||||
/* On enlève le transform global qui peut causer des bugs de collision */
|
||||
}
|
||||
|
||||
/* Conteneur d'image pour isoler le zoom */
|
||||
.podcast-image-wrapper {
|
||||
width: 100%;
|
||||
aspect-ratio: 1 / 1;
|
||||
overflow: hidden; /* Important pour que le zoom ne dépasse pas */
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.podcast-card img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
transition: transform 0.5s ease;
|
||||
filter: grayscale(20%);
|
||||
transition: transform 0.5s ease, filter 0.5s ease;
|
||||
}
|
||||
|
||||
.podcast-overlay {
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
background: rgba(255, 255, 255, 0.9);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
opacity: 0;
|
||||
transition: opacity 0.3s ease;
|
||||
/* Effets au survol de la carte */
|
||||
.podcast-card:hover {
|
||||
border-color: #666;
|
||||
}
|
||||
|
||||
.podcast-card:hover img { transform: scale(1.05); }
|
||||
.podcast-card:hover .podcast-overlay { opacity: 1; }
|
||||
|
||||
.podcast-overlay h3 {
|
||||
font-size: 0.9rem;
|
||||
letter-spacing: 2px;
|
||||
margin-bottom: 15px;
|
||||
text-transform: uppercase;
|
||||
.podcast-card:hover img {
|
||||
transform: scale(1.05);
|
||||
filter: grayscale(0%);
|
||||
}
|
||||
|
||||
.view-btn {
|
||||
font-size: 0.6rem;
|
||||
letter-spacing: 1px;
|
||||
border: 1px solid var(--text-color);
|
||||
padding: 8px 15px;
|
||||
}
|
||||
|
||||
/* --- Styles liens et player --- */
|
||||
.podcast-links {
|
||||
display: flex;
|
||||
gap: 20px;
|
||||
margin: 20px 0;
|
||||
}
|
||||
|
||||
.rss-link, .platform-link {
|
||||
font-size: 0.65rem;
|
||||
letter-spacing: 1px;
|
||||
text-decoration: none;
|
||||
color: var(--text-color);
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.audio-player-box {
|
||||
margin: 30px 0;
|
||||
/* Infos sous l'image */
|
||||
.podcast-info {
|
||||
padding: 20px;
|
||||
background: #151515;
|
||||
border: 1px solid var(--border-color);
|
||||
background: #0a0a0a;
|
||||
}
|
||||
|
||||
.audio-player-box audio { width: 100%; }
|
||||
.podcast-info h3 {
|
||||
font-size: 0.8rem;
|
||||
letter-spacing: 2px;
|
||||
text-transform: uppercase;
|
||||
margin: 0 0 10px 0;
|
||||
color: var(--accent-color);
|
||||
}
|
||||
|
||||
/* --- Styles Galerie --- */
|
||||
.podcast-info p {
|
||||
font-size: 0.7rem;
|
||||
color: #666;
|
||||
margin: 0;
|
||||
line-height: 1.4;
|
||||
}
|
||||
|
||||
/* --- Styles de la Galerie --- */
|
||||
.gallery-container {
|
||||
max-width: 1200px;
|
||||
margin: 0 auto 100px auto;
|
||||
padding: 0 40px;
|
||||
margin: 60px auto;
|
||||
padding: 0 20px;
|
||||
}
|
||||
|
||||
.gallery-grid {
|
||||
column-count: 3; /* Nombre de colonnes */
|
||||
column-gap: 20px;
|
||||
}
|
||||
|
||||
.gallery-item {
|
||||
break-inside: avoid; /* Évite de couper une image entre deux colonnes */
|
||||
margin-bottom: 20px;
|
||||
background-color: #111;
|
||||
border: 1px solid var(--border-color);
|
||||
overflow: hidden;
|
||||
transition: border-color 0.3s ease;
|
||||
display: grid;
|
||||
/* Crée 3 colonnes de taille égale */
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
gap: 20px; /* Espace entre les photos */
|
||||
}
|
||||
|
||||
.gallery-item img {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
display: block;
|
||||
filter: grayscale(30%); /* Petit effet désaturé pour le look industriel */
|
||||
transition: all 0.5s ease;
|
||||
border: 1px solid var(--border-color);
|
||||
transition: transform 0.3s ease;
|
||||
}
|
||||
|
||||
.gallery-item:hover {
|
||||
.gallery-item img:hover {
|
||||
transform: scale(1.02);
|
||||
border-color: #666;
|
||||
}
|
||||
|
||||
.gallery-item:hover img {
|
||||
filter: grayscale(0%);
|
||||
transform: scale(1.03);
|
||||
}
|
||||
|
||||
/* Responsive Galerie */
|
||||
@media (max-width: 900px) {
|
||||
/* Version Mobile : 1 seule colonne */
|
||||
@media (max-width: 768px) {
|
||||
.gallery-grid {
|
||||
column-count: 2;
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
}
|
||||
|
||||
/* --- Styles Contact --- */
|
||||
.contact-container {
|
||||
max-width: 800px;
|
||||
margin: 0 auto 100px auto;
|
||||
padding: 0 40px;
|
||||
}
|
||||
|
||||
.contact-grid {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: 60px;
|
||||
border-top: 1px solid var(--border-color);
|
||||
padding-top: 40px;
|
||||
}
|
||||
|
||||
.contact-method h3 {
|
||||
text-transform: uppercase;
|
||||
font-size: 0.8rem;
|
||||
letter-spacing: 2px;
|
||||
color: #666;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.contact-link {
|
||||
font-size: 1.5rem;
|
||||
color: var(--accent-color);
|
||||
text-decoration: none;
|
||||
transition: opacity 0.3s;
|
||||
}
|
||||
|
||||
.contact-link:hover {
|
||||
opacity: 0.7;
|
||||
}
|
||||
|
||||
.social-list {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.social-list li {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.social-list a {
|
||||
color: var(--text-color);
|
||||
text-decoration: none;
|
||||
font-size: 1.1rem;
|
||||
transition: color 0.3s;
|
||||
}
|
||||
|
||||
.social-list a:hover {
|
||||
color: var(--accent-color);
|
||||
}
|
||||
|
||||
/* Responsive Contact */
|
||||
@media (max-width: 600px) {
|
||||
.gallery-grid {
|
||||
column-count: 1;
|
||||
.contact-grid {
|
||||
grid-template-columns: 1fr;
|
||||
gap: 40px;
|
||||
}
|
||||
}
|
||||