hosted on my own knot server!
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

vlogs on vids.php

+73
+1
.gitignore
··· 1 1 .githashenv 2 2 caddy/data 3 3 caddy/data/* 4 + site/.well-known
site/assets/images/vlog_poster.jpg

This is a binary file and will not be displayed.

+72
site/vids/index.php
··· 18 18 19 19 <?php include "../nav_main.php" ?> 20 20 21 + <section aria-labelledby="vlogs"> 22 + 23 + <h2 id="vlogs" class="highlight">vlogs</h2> 24 + 25 + <p> 26 + sometimes i do these! not too often though. also these are usually long af so i don't blame you for not watching them. 27 + </p> 28 + 29 + <hr> 30 + 31 + <dl> 32 + <dt>yapping 2 (<time datetime="2025-05-17">may 2025</time>)</dt> 33 + <dd> 34 + <details> 35 + <summary>watch on site</summary> 36 + 37 + <video controls preload="none" poster="assets/images/vlog_poster.jpg"> 38 + <source src="https://stash.4-walls.net/vids/kat/vlogs/yapping2.mp4" type="video/mp4" /> 39 + download the <a href="https://stash.4-walls.net/vids/kat/vlogs/yapping2.mp4" download>MP4 file</a> 40 + </video> 41 + </details> 42 + </dd> 43 + 44 + <dt>union sq. vlog (<time datetime="2025-02-05">february 2025</time>)</dt> 45 + <dd> 46 + <details> 47 + <summary>watch on site</summary> 48 + 49 + <video controls preload="none" poster="assets/images/vlog_poster.jpg"> 50 + <source src="https://stash.4-walls.net/vids/kat/vlogs/unionvlog.mp4" type="video/mp4" /> 51 + download the <a href="https://stash.4-walls.net/vids/kat/vlogs/unionvlog.mp4" download>MP4 file</a> 52 + </video> 53 + </details> 54 + </dd> 55 + 56 + <dt>east village vlog (<time datetime="2025-02-03">february 2025</time>)</dt> 57 + <dd> 58 + <details> 59 + <summary>watch on site</summary> 60 + 61 + <video controls preload="none" poster="assets/images/vlog_poster.jpg"> 62 + <source src="https://stash.4-walls.net/vids/kat/vlogs/eastvillagevlog.mp4" type="video/mp4" /> 63 + download the <a href="https://stash.4-walls.net/vids/kat/vlogs/eastvillagevlog.mp4" download>MP4 file</a> 64 + </video> 65 + </details> 66 + </dd> 67 + 68 + <dt>industry city vlog (<time datetime="2025-01-04">january 2025</time>)</dt> 69 + <dd> 70 + <details> 71 + <summary>watch on site</summary> 72 + 73 + <video controls preload="none" poster="assets/images/vlog_poster.jpg"> 74 + <source src="https://stash.4-walls.net/vids/kat/vlogs/2025-01-04-industrycity.mp4" type="video/mp4" /> 75 + download the <a href="https://stash.4-walls.net/vids/kat/vlogs/2025-01-04-industrycity.mp4" download>MP4 file</a> 76 + </video> 77 + </details> 78 + </dd> 79 + 80 + <dt>going to the k-pop store (<time datetime="2024-12-17">december 2024</time>)</dt> 81 + <dd> 82 + <details> 83 + <summary>watch on site</summary> 84 + 85 + <video controls preload="none" poster="assets/images/vlog_poster.jpg"> 86 + <source src="https://stash.4-walls.net/vids/kat/vlogs/kpopstore-hw.mp4" type="video/mp4" /> 87 + download the <a href="https://stash.4-walls.net/vids/kat/vlogs/kpopstore-hw.mp4" download>MP4 file</a> 88 + </video> 89 + </details> 90 + </dd> 91 + </dl> 92 + 21 93 <section aria-labelledby="guitar"> 22 94 <h2 id="guitar" class="highlight">guitar</h2> 23 95