Compare commits
3 commits
7426345889
...
ea3ee318bf
Author | SHA1 | Date | |
---|---|---|---|
ea3ee318bf | |||
5046555a1a | |||
875be07af8 |
4 changed files with 12032 additions and 16 deletions
BIN
assets/img/le_plus_beau_des_voyages.webp
Normal file
BIN
assets/img/le_plus_beau_des_voyages.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 142 KiB |
43
index.php
43
index.php
|
@ -66,24 +66,37 @@
|
||||||
];
|
];
|
||||||
?>
|
?>
|
||||||
<body>
|
<body>
|
||||||
<!-- Header -->
|
<div class="container">
|
||||||
<div class="Title">
|
<h1 class="cursive_font_bold text-center pt-3 pb-2"><?php echo $podcast->title ?></h1>
|
||||||
<h1><?php echo $podcast->title ?></h1>
|
<div class="row">
|
||||||
<p>Animé par Pauline</p>
|
<div class="col-sm"></div>
|
||||||
</div>
|
<div class="col-sm">
|
||||||
<p><?php echo $podcast->description ?></p>
|
<p class="cursive_font fs-6 fw-lighter text-end">animé par Pauline</p>
|
||||||
<!-- Latest episode -->
|
</div>
|
||||||
<h2>Dernier épisode :</h2>
|
<div class="col-sm"></div>
|
||||||
<div class="Latest-Ep">
|
|
||||||
<img src="https://assets.pippa.io/shows/645f2650b6652d00118486b5/1685609690535-035baa450878ca2a6a8770e8d5c7f963.jpeg" alt="podcast logo" />
|
|
||||||
<div class="Latest-Ep-Header">
|
|
||||||
<h3><?php echo $podcast->latestEpTitle ?></h3>
|
|
||||||
<div><?php echo (string) $podcast->latestEpPublicationDate ?></div>
|
|
||||||
</div>
|
</div>
|
||||||
|
<p class="text-center"><?php echo $podcast->description ?></p>
|
||||||
|
<hr class="ms-2 me-2">
|
||||||
|
<!-- Episodes -->
|
||||||
<div>
|
<div>
|
||||||
<div><?php echo $podcast->latestEpDescription ?></div>
|
|
||||||
<audio controls=true <?php echo $podcast->latestEpAudioData ?>>podcast audio</audio>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<!--
|
||||||
|
<h1 class="cursive_font_bold"><?php echo $podcast->title ?></h1>
|
||||||
|
<p class="text-end">un podcast animé par Pauline</p>
|
||||||
|
<p><?php echo $podcast->description ?></p>
|
||||||
|
<h2>Épisodes :</h2>
|
||||||
|
<div>
|
||||||
|
<h3><?php echo $podcast->latestEpTitle ?></h3>
|
||||||
|
<p><?php echo $podcast->latestEpPublicationDate ?></p>
|
||||||
|
<div><?php echo $podcast->latestEpDescription ?></div>
|
||||||
|
<audio controls=true <?php echo $podcast->latestEpAudioData ?>>podcast audio</audio>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
-->
|
11983
scss/styles.css
Normal file
11983
scss/styles.css
Normal file
File diff suppressed because it is too large
Load diff
20
scss/styles.scss
Normal file
20
scss/styles.scss
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
@import "../bootstrap/scss/bootstrap";
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: "Cursive";
|
||||||
|
src: url("/assets/fonts/Cursive\ standard.woff2");
|
||||||
|
}
|
||||||
|
|
||||||
|
@font-face {
|
||||||
|
font-family: "Cursive-bold";
|
||||||
|
src: url("/assets/fonts/Cursive\ standard\ Bold.woff2");
|
||||||
|
}
|
||||||
|
|
||||||
|
.cursive_font_bold {
|
||||||
|
font-family: "Cursive-bold";
|
||||||
|
color: #63BAEE;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cursive_font {
|
||||||
|
font-family: "Cursive";
|
||||||
|
}
|
Loading…
Reference in a new issue