66 lines
2.3 KiB
Plaintext
66 lines
2.3 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" />
|
|
</head>
|
|
<body>
|
|
<div class="mainHeader">
|
|
<p class="title">
|
|
i take pictures
|
|
</p>
|
|
</div>
|
|
<div class="mainBody">
|
|
<div class="postBody">
|
|
<p>
|
|
<h1>MAINTENANCE IN PROGRESS expect breakges</h1>
|
|
<h1>Work in progress!</h1>
|
|
This is going to be a photo blog. Right now its just a mess of undescribed photos.
|
|
A lot of photos have not been uploaded yet and work on CSS and choosing which images
|
|
are included here are underway. Come back later to see more pictures, descriptive
|
|
content and better CSS.
|
|
</p>
|
|
<h4>A collection of {{ total_count }} photos in {{ album_count }} albums.</h4>
|
|
<details class="toc">
|
|
<summary class="tocText">Table of Contents</summary>
|
|
<br>
|
|
{% for placename, info in metadata.items() %}
|
|
<div class="tocEntry">
|
|
<a class="tocLink" href="/{{ placename }}/">{{ info['title'] }}, {{ info['state'] }} [{{ info["count"] }}]</a>
|
|
</div>
|
|
{% endfor %}
|
|
</details>
|
|
</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="placeLink">{{ info["title"] }}</span>
|
|
</div>
|
|
<!-- <div class="mainImgContainerBottom">
|
|
<img class="openIcon" src="openIcon.svg">
|
|
</div> -->
|
|
</div>
|
|
</a>
|
|
|
|
<!-- <a class="placeLink" href="/{{ placename }}/">{{ info['title'] }}, {{ info['state'] }}</a>
|
|
<span class="indexPhotoCount">{{ photo_counts[placename] }} Photos</span>
|
|
<br>
|
|
<a href="/{{ placename }}/">
|
|
<img class="preview" src="cover/cover_{{ info['cover'] }}">
|
|
</a> -->
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|