diff options
-rw-r--r-- | about.php | 2 | ||||
-rw-r--r-- | index.php | 2 | ||||
-rw-r--r-- | photography/index.php | 30 |
3 files changed, 23 insertions, 11 deletions
@@ -5,7 +5,7 @@ require($_SERVER["DOCUMENT_ROOT"] . "/header.php"); ?> <p> This site is hosted on a vultr VPS. It serves content through an apache webserver, and has a pretty simple backend. -I use PHP for templating, CSS for styling, and no JavaScript at all. The server supports HTTPS. +I use PHP for templating, CSS for styling, and no JavaScript at all. The server supports HTTPS using Let's Encrypt. If you're curious about anything here, you can email me at kai@kaistevenson.com. </p> <p>This site is a member of the <a href="https://nullring.xyz">Null Webring</a>.</p> @@ -8,7 +8,7 @@ require($_SERVER["DOCUMENT_ROOT"] . "/header.php"); think of. I'm a student at The University of Victoria in Canada, though I try to find time to do things other than schoolwork. I also have another website at - kaistevenson.com, if you don't like this one :(. You can email me at kai@kaistevenson.com. + kaistevenson.com, if you don't like this one and want to hurt my feelings. You can email me at kai@kaistevenson.com. </p> <ul> <li> diff --git a/photography/index.php b/photography/index.php index 07d4655..a569b69 100644 --- a/photography/index.php +++ b/photography/index.php @@ -1,9 +1,21 @@ -<?php
-$title = "Photography";
-require($_SERVER["DOCUMENT_ROOT"] . "/head.php");
-require($_SERVER["DOCUMENT_ROOT"] . "/header.php");
-?>
-<p>
- There's nothing here, yet.
-</p>
-<?php require($_SERVER["DOCUMENT_ROOT"] . "/footer.php"); ?>
\ No newline at end of file +<?php +$title = "Photography"; +require($_SERVER["DOCUMENT_ROOT"] . "/head.php"); +require($_SERVER["DOCUMENT_ROOT"] . "/header.php"); +?> +<p> + My photos come from either my iPhone 13 Pro, which takes pretty bad pictures, or my Canon 6D MK II, which is a full-frame DSLR. + For my DSLR, I almost always use my 50mm f/1.8 prime lens. Rarely, I instead use a 70-300mm telephoto zoom. Some of my photos will + have metadata attached if you're curious about the settings I use. In good light, I shoot from around 1/2000, 100iso, f/1.8, ranging to + 1/500, 400iso, f/6. In dark conditions, I shoot at around 1/200, 2000iso, f/1.8. Of course, a wide open aperture induces some significant + gaussian blurring, so that is a stylistic element that I sometimes want and sometimes don't. It does mean that I can minimize grain and motion blur. + The other thing that comes up is focal plane issues. Sometimes the plane of my subject does not exactly match the plane of focus, in which case + I will be forced to step down the aperture. I try not to go below f/8 if I can help it, because the image becomes less clear. + You may notice a vignette in some of pictures. This is usually not intentional--my lens just tends to do that. I'm too lazy to fix it in post. + On the note of post-processing, I don't do it much. Sometimes I retouch shadows and highlights, but I try to stay away from colour, with the notable + exception of my B&W work. +</p> +<p> + There's no photos here because I haven't figured out how I want to handle serving images. +</p> +<?php require($_SERVER["DOCUMENT_ROOT"] . "/footer.php"); ?> |