all repos — www @ master

deserthorns.net content + generator

pages/photography.html (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
{{ define "head" }}
<link rel="stylesheet" href="{{.StylePath}}">
<style>
    img {
        border-radius: var(--border-radius);
        display: block;
        width: 80%;
        margin: 0 auto 3rem;
    }
    @media screen and (max-width: 600px) {
        img {
            width: 100%;
        }
    }
</style>
{{ end }}

{{ define "body" }}
{{ template "header" . }}
<img src="/assets/img/photography.jpg">
<p>
    I got interested in photography in high school. Over the years that interest came and went. I still like having a "nice" camera around for when the mood strikes.
</p>
<p>
    The difficult part of photography for me is finding opportunities.
    Living in a part of the world where I'm expected to drive everywhere makes it hard to be spontaneous.
    Instead, I need to consciously make plans to go somewhere and take my camera.
</p>

<h2>Camera</h2>
<p>
    I shoot an Olympus OM-D E-M10, typically with Panasonic 25mm f1.4 lens. It sure isn't the newest camera, but it scratches the "nice camera" itch well enough for my needs.
</p>

{{ end }}

{{ define "scripts" }}
{{ end }}