1
0
Fork 0
isopod.cool/blog/posts/guide_fix_youtube_buffering_firefox/index.php
will 6a97a82927 New journal post
Updated title on blog post #4 to match the rest
Updated the youtube buffering article, and used it as a guinea pig for a markdown experiment
updated /etc/quotes/
new random captions on /
added some new links, including a new Articles section
adjusted the background on /stats/
changed standard body width from 43rem to 80ch
2024-04-21 08:18:51 -06:00

31 lines
953 B
PHP

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Guide - How to Make Youtube Videos Buffer All The Way Like The Old Days</title>
<link href="/style.css" rel="stylesheet" type="text/css" media="all">
<link href="/blog/comment/comments.css" rel="stylesheet" type="text/css" media="all">
<style>
h1 {
background-image: url('youtube.svg');
}
</style>
</head>
<body>
<h1>guide:</h1>
<h2 id="caption">How to Make Youtube Videos Buffer All The Way Like The Old Days (In Firefox)</h2>
<nav>
<a href="/">home</a>
<a href="/blog">blog</a>
</nav>
<?php
include("../post_dates.php");
include("../Parsedown.php");
$Parsedown = new Parsedown();
echo $Parsedown->text(file_get_contents("index.md"));
include("../../comment/form.php");
?>
</body>
</html>