diff options
author | Jacob Janzen <jacob.a.s.janzen@gmail.com> | 2024-03-17 16:06:01 -0500 |
---|---|---|
committer | Jacob Janzen <jacob.a.s.janzen@gmail.com> | 2024-03-17 16:06:01 -0500 |
commit | 10d0f6c73040bedf8f2a2dc49b0936cfe4090c62 (patch) | |
tree | 5c868bf41ef6ad254143c15919f80c74d7e63a22 | |
parent | 73c18066409ccadb12eb6a988c5492b7225dcf56 (diff) |
add tea tasting notes
-rw-r--r-- | index.html | 9 | ||||
-rw-r--r-- | projects.html | 5 | ||||
-rw-r--r-- | tea.html | 18 | ||||
-rw-r--r-- | tea/W2T-2022-BoatCaptain.html | 26 | ||||
-rw-r--r-- | tea/template.html | 23 |
5 files changed, 75 insertions, 6 deletions
@@ -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> diff --git a/projects.html b/projects.html index c8a70d9..9c73ffe 100644 --- a/projects.html +++ b/projects.html @@ -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> diff --git a/tea.html b/tea.html new file mode 100644 index 0000000..938d784 --- /dev/null +++ b/tea.html @@ -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> diff --git a/tea/W2T-2022-BoatCaptain.html b/tea/W2T-2022-BoatCaptain.html new file mode 100644 index 0000000..28271a0 --- /dev/null +++ b/tea/W2T-2022-BoatCaptain.html @@ -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> diff --git a/tea/template.html b/tea/template.html new file mode 100644 index 0000000..c950504 --- /dev/null +++ b/tea/template.html @@ -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> |