add tea tasting notes

This commit is contained in:
Jacob Janzen 2024-03-17 16:06:01 -05:00
parent 73c1806640
commit 10d0f6c730
5 changed files with 75 additions and 6 deletions

View file

@ -13,15 +13,16 @@
<h1>Jacob Janzen's website</h1>
<p>
This website is designed to be as minimal as possible. It's written in
HTML with minimal CSS and JavaScript where needed. There are no
frameworks, and no bloat. It's currently hosted on GitHub pages, but I
intend to eventually move it over to a self-hosted server when I get the
hardware (this is years away).
HTML with minimal CSS and JavaScript where needed. There are no frameworks
and no bloat. It's currently hosted on GitHub pages, but I intend to
eventually move it over to a self-hosted server when I get the hardware
(this is years away).
</p>
<h3>Links</h3>
<ul>
<li><a href="./about.html">About Me</a></li>
<li><a href="./projects.html">Projects</a></li>
<li><a href="./tea.html">Tea Tasting notes</a></li>
</ul>
</body>
</html>

View file

@ -27,8 +27,9 @@
a project-based course at the University of Manitoba.
</li>
<li>
<a href="https://github.com/codyauch/IPN-Project">IPN Project</a>:
implementing an interplanetary network simulation using ns-3.
<a href="https://github.com/codyauch/IPN-Project" target="_blank"
>IPN Project</a
>: implementing an interplanetary network simulation using ns-3.
</li>
</ul>
<h2>Finished</h2>

18
tea.html Normal file
View file

@ -0,0 +1,18 @@
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<title>Tea Tasting Notes</title>
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<h1>Tea Tasting Notes</h1>
<ul>
<li><a href="tea/W2T-2022-BoatCaptain.html">W2T 2022 Boat Captain</li>
</ul>
</body>
</html>

View file

@ -0,0 +1,26 @@
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<title>W2T 2022 Boat Captain</title>
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="../styles.css" />
</head>
<body>
<h1>White2Tea 2022 Boat Captain</h1>
<p>This is a 2 year-old sheng pu'er in a 200 gram cake.</p>
<p>
The liquor is a yellowy-orange colour, with a thick, soupy texture. The
early steeps were very smooth, while later ones were steeps were drier
with a more tannic mouthfeel. It has a smoky, leather flavour that settles
into a malty sweetness.
</p>
<h3>Rating: 8/10</h3>
</body>
</html>

23
tea/template.html Normal file
View file

@ -0,0 +1,23 @@
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<title>Title</title>
<meta name="description" content="" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="../styles.css" />
</head>
<body>
<h1>Title</h1>
<p>Description</p>
<p>
<!-- liquor, mouthfeel, flavour -->
</p>
<h3>Rating: x/10</h3>
</body>
</html>