My Epic Website

This is a beautiful website. It was rendered using mkwsh.

 ________________________________ 
< I love UNIX-like systems !!!!! >
 -------------------------------- 
        \   ^__^
         \  (oo)\_______
            (__)\       )\/\
                ||----w |
                ||     ||

Anyways, here's the source code for this site:

<!DOCTYPE html>
<html lang="en">
	<head>
		<title>My Cool Site!</title>
		<style>
		body { width: min(100%, 22cm); margin: 0 auto; font-size: 1.2em; padding:0 4px; }
		p, h1 { margin: 0.3em 0;}
		pre {
			width: fit-content; margin: 0 auto;
			tab-size: 4;
			padding: 1em; border-radius: 1em;
			background-color: #eee; border: 1px solid gray;
		}
		</style>
	</head>
	<body>
		<h1>My Epic Website</h1>
		<p>This is a <em>beautiful</em> website. It was rendered using
		<a href="https://codeberg.org/babalark/mkwsh">mkwsh</a>.</p>

#!
if command -v cowsay > /dev/null 2>&1; then
	# Printf to avoid newlines..
	printf '<pre>'
	cowsay "I love UNIX-like systems !!!!!"
	printf '</pre>'
else
#!
	<p>
	Here's where I'd put my cowsay.... IF I HAD ONE.
	</p>
#! fi
		<p>Anyways, here's the source code for this site: </p>
#!
printf '<pre><code>'
sed -e 's/&/\&amp;/g' -e 's/</\&lt;/g' -e 's/>/\&gt;/g' index.upphtml
printf '</code></pre>'
#!
	</body>
</html>