Clear index for refactor
This commit is contained in:
parent
875be07af8
commit
5046555a1a
1 changed files with 29 additions and 16 deletions
45
index.php
45
index.php
|
@ -66,24 +66,37 @@
|
|||
];
|
||||
?>
|
||||
<body>
|
||||
<!-- Header -->
|
||||
<div class="Title">
|
||||
<h1><?php echo $podcast->title ?></h1>
|
||||
<p>Animé par Pauline</p>
|
||||
</div>
|
||||
<p><?php echo $podcast->description ?></p>
|
||||
<!-- Latest episode -->
|
||||
<h2>Dernier épisode :</h2>
|
||||
<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 class="container">
|
||||
<h1 class="cursive_font_bold text-center pt-3 pb-2"><?php echo $podcast->title ?></h1>
|
||||
<div class="row">
|
||||
<div class="col-sm"></div>
|
||||
<div class="col-sm">
|
||||
<p class="cursive_font fs-6 fw-lighter text-end">animé par Pauline</p>
|
||||
</div>
|
||||
<div class="col-sm"></div>
|
||||
</div>
|
||||
<p class="text-center"><?php echo $podcast->description ?></p>
|
||||
<hr class="ms-2 me-2">
|
||||
<!-- Episodes -->
|
||||
<div>
|
||||
<div><?php echo $podcast->latestEpDescription ?></div>
|
||||
<audio controls=true <?php echo $podcast->latestEpAudioData ?>>podcast audio</audio>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</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>
|
||||
|
||||
-->
|
Loading…
Reference in a new issue