27 lines
948 B
HTML
27 lines
948 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<title>Home</title>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<link href="/style/style.css" rel="stylesheet" />
|
|
</head>
|
|
|
|
{% include "nav.html" %}
|
|
|
|
<body>
|
|
<div class="body-wrapper">
|
|
<p>Hi there! This is the blog and whatever else it may become of Price Hiller. I wrote this bad
|
|
boy in Rust because I apparently have too much time to kill. I also use Neovim... because I
|
|
have too much time to kill. Nix? Yeah, too much time to kill. Yeah, I boot Linux — what about
|
|
it? Oh, why? I enjoy simulating the experience of being a bald software developer.</p>
|
|
<p>The gatekeepers of <strong>THE LORE</strong>: <img src="/assets/static/maggie-ellie-comfy.jpeg"
|
|
alt="Black labrador and yellow labrador dogs sleeping on bed with blankets over them" width="700"></p>
|
|
</div>
|
|
</body>
|
|
|
|
{% include "footer.html" %}
|
|
|
|
</html>
|