pub / yt2html

Fetches Youtube content via RSS and provides a chronological timeline
git clone https://src.jayvii.de/pub/yt2html.git
Home | Log | Files | Exports | Refs | README | RSS

commit 4d65bd3efa3f9703383651c3e1afbd3f00fb5680
parent 172c3b58c33ed799adf8206f80517e685b8f12fc
Author: JayVii <jayvii[AT]posteo[DOT]de>
Date:   Sat, 25 Jan 2025 14:48:01 +0100

fix: span video information within div

Diffstat:
Mindex.php | 7++++---
1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/index.php b/index.php @@ -303,9 +303,10 @@ > <!-- Video Information --> - <mark><?php echo $video["author"]; ?></mark> - <mark><?php echo date("Y-m-d, H:i:s", $video["time"]); ?></mark> - <br> + <div style="margin-bottom:0.5em;"> + <mark><?php echo $video["author"]; ?></mark> + <mark><?php echo date("Y-m-d, H:i:s", $video["time"]); ?></mark> + </div> <!-- Video Buttons --> <?php $js_args = $index . ",'" . $video["vid"] . "'"; ?>