New Post + support for mastodon

This commit is contained in:
Don Harper 2022-12-20 15:56:31 -06:00
parent 71ecae9875
commit ab84019b99
11 changed files with 322 additions and 2 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 47 KiB

View file

@ -0,0 +1,106 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>2022 - duckland.org&#39;s photo gallery</title>
<meta name="description" content="">
<meta name="author" content="Don Harper">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="../../static/css/normalize.css">
<link rel="stylesheet" href="../../static/themes/classic/galleria.classic.css">
<link rel="stylesheet" href="../../static/css/style.css">
<style>
body::after{
position:absolute; width:0; height:0; overflow:hidden; z-index:-1;
content:url(20221219211012886-0600.webp);
}</style>
</head>
<body>
<div class="container">
<header>
<h1><a href="../../">duckland.org&#39;s photo gallery</a></h1>
<nav id="menu">
<ul>
<li><a href="/photos/">Photos Home</a></li>
<li><a href="/">Home Page</a></li>
</ul>
</nav>
<div class="breadcrumb">
<h2>
<a href="../">Christmas</a> » <a href=".">2022</a></h2>
</div>
<hr>
</header>
<div id="main" role="main">
<div class="icons">
<a id="fullscreen"><img src="../../static/img/fullscreen.png"
title="Fullscreen" alt="Fullscreen (f)" /></a>
</div>
<div id="gallery"></div>
<script src="../../static/jquery-3.3.1.min.js"></script>
<script src="../../static/galleria.min.js"></script>
<script src="../../static/themes/classic/galleria.classic.min.js"></script>
<script src="../../static/plugins/history/galleria.history.min.js"></script>
<script>
var data = [
{
title: "20221219211012886-0600",
description: "",
thumb: "thumbnails/20221219211012886-0600.webp",
image: "20221219211012886-0600.webp"
},
]
Galleria.ready(function() {
/*
load thumbnails after gallery setup, and download has started
for the main images, but before the loading of map tiles starts
in the background. This ensures visible elements are prioritised
over non-visible elements
The choice to lazy load thumbnails in batches of 50 was not made
scientifically. Other numbers may yield better performance.
*/
this.lazyLoadChunks( 50 );
this.attachKeyboard({
right: this.next,
left: this.prev,
/* Toggle fullscreen display on press of 'f' key */
0x46: this.toggleFullscreen,
});
var gallery = this;
$('#fullscreen').click(function() {
gallery.toggleFullscreen();
});
$('.icons').appendTo(this.$('container'));
});
Galleria.configure({
imageCrop: false,
transition: "fade",
thumbnails: "lazy"
});
Galleria.run("#gallery", {dataSource: data});
</script>
</div>
<footer>
<p>
<span>&copy; Don Harper</span>
<span>Generated by <a href="https://github.com/saimn/sigal">sigal</a></span>
</p>
</footer> </div>
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.1 KiB

View file

@ -62,6 +62,10 @@
<img src="2019/thumbnails/20191214125859.webp" class="album_thumb" alt="2019" title="2019" /></a>
<span class="album_title">2019</span>
</li>
<li><a href="2022/">
<img src="2022/thumbnails/20221219211012886-0600.webp" class="album_thumb" alt="2022" title="2022" /></a>
<span class="album_title">2022</span>
</li>
</ul>
</div>
<div class="icons">

Binary file not shown.

After

Width:  |  Height:  |  Size: 109 KiB

View file

@ -166,6 +166,12 @@
thumb: "thumbnails/sunset-on-katori.webp",
image: "sunset-on-katori.webp"
},
{
title: "2022-P52",
description: "",
thumb: "thumbnails/2022-P52.webp",
image: "2022-P52.webp"
},
]
Galleria.ready(function() {

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB