81 lines
4.2 KiB
Plaintext
81 lines
4.2 KiB
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta http-equiv="x-ua-compatible" content="ie=edge" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>nebula's photoblog</title>
|
|
<link rel="icon" href="favicon.ico" />
|
|
<link rel="stylesheet" href="style.css?1" />
|
|
<link rel="alternate" type="application/atom+xml" title="Atom feed" href="https://helixnebula.space/feed_html.atom" />
|
|
</head>
|
|
<body>
|
|
<div class="mainHeader">
|
|
<p class="title">
|
|
i take pictures
|
|
</p>
|
|
</div>
|
|
<div class="mainBody">
|
|
<div class="postBody">
|
|
<p>
|
|
<h1>Huff Pine Needles and Poke Cacti</h1>
|
|
Throwing pinecones at trees, getting jumping cholla bits stuck on my
|
|
shoes, covering my pants with weird plant bits by trudging through tall
|
|
grass, backpacking into the desert with like a dozen pounds of water,
|
|
sleeping in my car either 50 miles from the nearest human settlement or
|
|
in a truck stop parking lot...I'm not going to endorse my way of
|
|
traveling as a sane option for anyone else but me, but personally I'd
|
|
rather freeze and/or roast in the weather instead of saying hotels are
|
|
too expensive for me to travel. This is a retropsective of one of the
|
|
most chaotic periods of my life, where I wasn't afraid to abandon
|
|
society and embrace the unknown of not knowing exactly where I will
|
|
sleep that night or where the paths will lead.
|
|
</p>
|
|
<h3>A collection of {{ total_count }} photos in {{ album_count }} albums.</h3>
|
|
<details class="toc">
|
|
<summary class="tocText">Table of Contents</summary>
|
|
{% for placename, info in metadata.items() %}
|
|
<div class="tocEntry">
|
|
<a class="tocLink" href="/{{ placename }}/">{{ info['title'] }}, {{ info['state'] }} [{{ info["count"] }}]</a>
|
|
</div>
|
|
{% endfor %}
|
|
</details>
|
|
<details class="toc">
|
|
<summary class="tocText">Albums With Stories</summary>
|
|
<span>Ordered by most recent first.</span>
|
|
{% for placename in posts %}
|
|
<div class="tocEntry">
|
|
<a class="tocLink" href="/{{ placename }}">{{ metadata[placename]['title'] }}, {{ metadata[placename]['state'] }} [{{ metadata[placename]['count'] }}]</a>
|
|
</div>
|
|
{% endfor %}
|
|
</details>
|
|
<p class="notices" xmlns:cc="http://creativecommons.org/ns#" >Photos licensed under <a href="https://creativecommons.org/licenses/by-nc-sa/4.0/?ref=chooser-v1" target="_blank" rel="license noopener noreferrer" style="display:inline-block;">CC BY-NC-SA 4.0<img style="height:22px!important;margin-left:3px;vertical-align:text-bottom;" src="https://mirrors.creativecommons.org/presskit/icons/cc.svg?ref=chooser-v1" alt=""><img style="height:22px!important;margin-left:3px;vertical-align:text-bottom;" src="https://mirrors.creativecommons.org/presskit/icons/by.svg?ref=chooser-v1" alt=""><img style="height:22px!important;margin-left:3px;vertical-align:text-bottom;" src="https://mirrors.creativecommons.org/presskit/icons/nc.svg?ref=chooser-v1" alt=""><img style="height:22px!important;margin-left:3px;vertical-align:text-bottom;" src="https://mirrors.creativecommons.org/presskit/icons/sa.svg?ref=chooser-v1" alt=""></a>
|
|
<br>Powered by <a href="https://git.tilde.town/nebula/helixnebula.space">free, open source software</a>
|
|
<br><a href="gemini://helixnebula.space">Available via Gemini protocol</a>
|
|
<br><a href="https://helixnebula.space/feeds.html">Subscribe with your feed reader!</a>
|
|
</p>
|
|
</div>
|
|
<br>
|
|
<div class="photolinks">
|
|
{% for placename, info in metadata.items() %}
|
|
<div class="photolink">
|
|
<a href="/{{ placename }}/">
|
|
<div class="mainImgContainer">
|
|
<img class="preview" src="cover/cover_{{ info['cover'] }}">
|
|
<div class="mainImgContainerTop">
|
|
<span class="placeTitle">{{ info["title"] }}</span>
|
|
<br>
|
|
<span class="placeState">{{ info["state"] }}</span>
|
|
</div>
|
|
<div class="mainImgContainerBottom">
|
|
<span class="indexPhotoCount">View {{ photo_counts[placename] }} photos</span>
|
|
</div>
|
|
</div>
|
|
</a>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|