mirror of
https://github.com/Radiquum/photos.git
synced 2025-04-06 08:14:32 +00:00
feat/generator: start on gallery
This commit is contained in:
parent
383abce65d
commit
cb2b744d01
15 changed files with 1263 additions and 9 deletions
|
@ -7,6 +7,7 @@ import fs from "fs";
|
||||||
import exec from "child_process";
|
import exec from "child_process";
|
||||||
import Base from "./templates/Base";
|
import Base from "./templates/Base";
|
||||||
import Header from "./templates/Header";
|
import Header from "./templates/Header";
|
||||||
|
import YearPhotos from "./templates/YearPhotos";
|
||||||
|
|
||||||
const log = new Log();
|
const log = new Log();
|
||||||
|
|
||||||
|
@ -17,6 +18,9 @@ if (!process.env.FIREBASE_COLLECTION) {
|
||||||
throw new Error("FIREBASE_COLLECTION is not set");
|
throw new Error("FIREBASE_COLLECTION is not set");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const ENDPOINT = process.env.AWS_ENDPOINT || "";
|
||||||
|
const BUCKET = process.env.AWS_BUCKET || "";
|
||||||
|
|
||||||
const ENVIRONMENT = process.env.ENVIRONMENT || "prod";
|
const ENVIRONMENT = process.env.ENVIRONMENT || "prod";
|
||||||
|
|
||||||
const serviceAccount = require(process.env.FIREBASE_SERVICE_ACCOUNT as string);
|
const serviceAccount = require(process.env.FIREBASE_SERVICE_ACCOUNT as string);
|
||||||
|
@ -25,13 +29,15 @@ const app = initializeApp({
|
||||||
});
|
});
|
||||||
const db = getFirestore(app);
|
const db = getFirestore(app);
|
||||||
|
|
||||||
interface Url {
|
export interface Url {
|
||||||
name: string;
|
name: string;
|
||||||
value: string;
|
value: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface Image {
|
export interface Image {
|
||||||
id: string;
|
id: string;
|
||||||
|
image: string;
|
||||||
|
thumbnail: string;
|
||||||
alt: string;
|
alt: string;
|
||||||
tags: string[];
|
tags: string[];
|
||||||
urls: Url[];
|
urls: Url[];
|
||||||
|
@ -41,10 +47,10 @@ interface Image {
|
||||||
date: number;
|
date: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
type Years = Record<string, Image[]>;
|
export type Years = Record<string, Image[]>;
|
||||||
|
|
||||||
let tags: string[] = [];
|
let tags: string[] = [];
|
||||||
let items: Years = {};
|
let items: Record<string, Image[]> = {};
|
||||||
|
|
||||||
function addTag(tag: string) {
|
function addTag(tag: string) {
|
||||||
if (tags.includes(tag)) {
|
if (tags.includes(tag)) {
|
||||||
|
@ -64,7 +70,7 @@ if (
|
||||||
.get()
|
.get()
|
||||||
.then((snapshot) => {
|
.then((snapshot) => {
|
||||||
snapshot.forEach((doc) => {
|
snapshot.forEach((doc) => {
|
||||||
const data = doc.data();
|
const data = doc.data() as Image;
|
||||||
data.tags.forEach((tag: string) => {
|
data.tags.forEach((tag: string) => {
|
||||||
addTag(tag);
|
addTag(tag);
|
||||||
});
|
});
|
||||||
|
@ -74,8 +80,13 @@ if (
|
||||||
items[year] = [];
|
items[year] = [];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const ext = doc.id.split(".").pop() as string;
|
||||||
|
const path = doc.id.split(".")[0] as string;
|
||||||
|
|
||||||
items[year].push({
|
items[year].push({
|
||||||
id: doc.id,
|
id: doc.id,
|
||||||
|
image: `${ENDPOINT}/${BUCKET}/${path}/${path}.${ext}`,
|
||||||
|
thumbnail: `${ENDPOINT}/${BUCKET}/${path}/${path}-512.${ext}`,
|
||||||
alt: data.alt,
|
alt: data.alt,
|
||||||
tags: data.tags,
|
tags: data.tags,
|
||||||
urls: data.urls,
|
urls: data.urls,
|
||||||
|
@ -95,9 +106,29 @@ if (
|
||||||
items = JSON.parse(fs.readFileSync("data/items.json", "utf-8"));
|
items = JSON.parse(fs.readFileSync("data/items.json", "utf-8"));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// const ordered = Object.keys(items)
|
||||||
|
// .sort().reverse()
|
||||||
|
// .reduce((obj, key) => {
|
||||||
|
// obj[key] = items[key];
|
||||||
|
// return obj;
|
||||||
|
// }, {} as typeof items);
|
||||||
|
|
||||||
|
Object.keys(items).forEach((year) => {
|
||||||
|
items[year].sort((a, b) => b.date - a.date);
|
||||||
|
});
|
||||||
|
|
||||||
const html = renderToString(
|
const html = renderToString(
|
||||||
<Base isDev={ENVIRONMENT == "dev"}>
|
<Base isDev={ENVIRONMENT == "dev"}>
|
||||||
<Header />
|
<Header />
|
||||||
|
<div className="container mx-auto p-4">
|
||||||
|
{Object.keys(items).sort().reverse().map((year) => (
|
||||||
|
<YearPhotos
|
||||||
|
year={year}
|
||||||
|
images={items[year]}
|
||||||
|
key={`${year}-container`}
|
||||||
|
/>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
</Base>
|
</Base>
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
|
@ -11,6 +11,7 @@
|
||||||
"chokidar": "^4.0.3",
|
"chokidar": "^4.0.3",
|
||||||
"express": "^4.21.2",
|
"express": "^4.21.2",
|
||||||
"firebase-admin": "^13.1.0",
|
"firebase-admin": "^13.1.0",
|
||||||
|
"lightgallery": "^2.8.2",
|
||||||
"picocolors": "^1.1.1",
|
"picocolors": "^1.1.1",
|
||||||
"react": "^19.0.0",
|
"react": "^19.0.0",
|
||||||
"react-dom": "^19.0.0",
|
"react-dom": "^19.0.0",
|
||||||
|
@ -378,6 +379,8 @@
|
||||||
|
|
||||||
"jws": ["jws@4.0.0", "", { "dependencies": { "jwa": "^2.0.0", "safe-buffer": "^5.0.1" } }, "sha512-KDncfTmOZoOMTFG4mBlG0qUIOlc03fmzH+ru6RgYVZhPkyiy/92Owlt/8UEN+a4TXR1FQetfIpJE8ApdvdVxTg=="],
|
"jws": ["jws@4.0.0", "", { "dependencies": { "jwa": "^2.0.0", "safe-buffer": "^5.0.1" } }, "sha512-KDncfTmOZoOMTFG4mBlG0qUIOlc03fmzH+ru6RgYVZhPkyiy/92Owlt/8UEN+a4TXR1FQetfIpJE8ApdvdVxTg=="],
|
||||||
|
|
||||||
|
"lightgallery": ["lightgallery@2.8.2", "", {}, "sha512-6BV7joQtgdHUhDgNPeGu/RWqcGvmvwbyJpTdB5jgKX5nhU5yGEG3PVaETIlAEEV15Uop+8p+F3PqnokFUlywZA=="],
|
||||||
|
|
||||||
"lightningcss": ["lightningcss@1.29.1", "", { "dependencies": { "detect-libc": "^1.0.3" }, "optionalDependencies": { "lightningcss-darwin-arm64": "1.29.1", "lightningcss-darwin-x64": "1.29.1", "lightningcss-freebsd-x64": "1.29.1", "lightningcss-linux-arm-gnueabihf": "1.29.1", "lightningcss-linux-arm64-gnu": "1.29.1", "lightningcss-linux-arm64-musl": "1.29.1", "lightningcss-linux-x64-gnu": "1.29.1", "lightningcss-linux-x64-musl": "1.29.1", "lightningcss-win32-arm64-msvc": "1.29.1", "lightningcss-win32-x64-msvc": "1.29.1" } }, "sha512-FmGoeD4S05ewj+AkhTY+D+myDvXI6eL27FjHIjoyUkO/uw7WZD1fBVs0QxeYWa7E17CUHJaYX/RUGISCtcrG4Q=="],
|
"lightningcss": ["lightningcss@1.29.1", "", { "dependencies": { "detect-libc": "^1.0.3" }, "optionalDependencies": { "lightningcss-darwin-arm64": "1.29.1", "lightningcss-darwin-x64": "1.29.1", "lightningcss-freebsd-x64": "1.29.1", "lightningcss-linux-arm-gnueabihf": "1.29.1", "lightningcss-linux-arm64-gnu": "1.29.1", "lightningcss-linux-arm64-musl": "1.29.1", "lightningcss-linux-x64-gnu": "1.29.1", "lightningcss-linux-x64-musl": "1.29.1", "lightningcss-win32-arm64-msvc": "1.29.1", "lightningcss-win32-x64-msvc": "1.29.1" } }, "sha512-FmGoeD4S05ewj+AkhTY+D+myDvXI6eL27FjHIjoyUkO/uw7WZD1fBVs0QxeYWa7E17CUHJaYX/RUGISCtcrG4Q=="],
|
||||||
|
|
||||||
"lightningcss-darwin-arm64": ["lightningcss-darwin-arm64@1.29.1", "", { "os": "darwin", "cpu": "arm64" }, "sha512-HtR5XJ5A0lvCqYAoSv2QdZZyoHNttBpa5EP9aNuzBQeKGfbyH5+UipLWvVzpP4Uml5ej4BYs5I9Lco9u1fECqw=="],
|
"lightningcss-darwin-arm64": ["lightningcss-darwin-arm64@1.29.1", "", { "os": "darwin", "cpu": "arm64" }, "sha512-HtR5XJ5A0lvCqYAoSv2QdZZyoHNttBpa5EP9aNuzBQeKGfbyH5+UipLWvVzpP4Uml5ej4BYs5I9Lco9u1fECqw=="],
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
{"2021":[{"id":"IMG_20210324_205508.jpg","alt":"Sleeping kitten kat","tags":["cat","night","phone","weeee","tag"],"urls":[{"name":"example","value":"https://example.com"}],"mimetype":"image/jpeg","width":2160,"height":3840,"date":1612897200000}],"2025":[{"id":"83_7d3519266ea930d5.jpg","alt":"Protogens are in the park","tags":["protogen","tag"],"urls":[{"name":"example","value":"https://example.com"}],"mimetype":"image/jpeg","width":1632,"height":987,"date":1739818800000},{"id":"mohamed-elsayed-DWpR-BpKlw0-unsplash.jpg","alt":"Grumpy red panda in the snow","tags":["red_panda","testimage","snow","winter"],"urls":[],"mimetype":"image/jpeg","width":3386,"height":4233,"date":1739991600000}]}
|
|
|
@ -1 +0,0 @@
|
||||||
["protogen","tag","cat","night","phone","weeee","red_panda","testimage","snow","winter"]
|
|
|
@ -16,6 +16,7 @@
|
||||||
"chokidar": "^4.0.3",
|
"chokidar": "^4.0.3",
|
||||||
"express": "^4.21.2",
|
"express": "^4.21.2",
|
||||||
"firebase-admin": "^13.1.0",
|
"firebase-admin": "^13.1.0",
|
||||||
|
"lightgallery": "^2.8.2",
|
||||||
"picocolors": "^1.1.1",
|
"picocolors": "^1.1.1",
|
||||||
"react": "^19.0.0",
|
"react": "^19.0.0",
|
||||||
"react-dom": "^19.0.0",
|
"react-dom": "^19.0.0",
|
||||||
|
|
|
@ -521,6 +521,12 @@
|
||||||
.collapse {
|
.collapse {
|
||||||
visibility: collapse;
|
visibility: collapse;
|
||||||
}
|
}
|
||||||
|
.absolute {
|
||||||
|
position: absolute;
|
||||||
|
}
|
||||||
|
.fixed {
|
||||||
|
position: fixed;
|
||||||
|
}
|
||||||
.relative {
|
.relative {
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
@ -548,12 +554,21 @@
|
||||||
.mx-auto {
|
.mx-auto {
|
||||||
margin-inline: auto;
|
margin-inline: auto;
|
||||||
}
|
}
|
||||||
|
.mb-4 {
|
||||||
|
margin-bottom: calc(var(--spacing) * 4);
|
||||||
|
}
|
||||||
.block {
|
.block {
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
.flex {
|
.flex {
|
||||||
display: flex;
|
display: flex;
|
||||||
}
|
}
|
||||||
|
.hidden {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.inline-block {
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
.inline-flex {
|
.inline-flex {
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
}
|
}
|
||||||
|
@ -566,6 +581,9 @@
|
||||||
.h-16 {
|
.h-16 {
|
||||||
height: calc(var(--spacing) * 16);
|
height: calc(var(--spacing) * 16);
|
||||||
}
|
}
|
||||||
|
.h-full {
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
.w-16 {
|
.w-16 {
|
||||||
width: calc(var(--spacing) * 16);
|
width: calc(var(--spacing) * 16);
|
||||||
}
|
}
|
||||||
|
@ -604,6 +622,12 @@
|
||||||
.bg-\[\#FF478B\] {
|
.bg-\[\#FF478B\] {
|
||||||
background-color: #FF478B;
|
background-color: #FF478B;
|
||||||
}
|
}
|
||||||
|
.object-cover {
|
||||||
|
object-fit: cover;
|
||||||
|
}
|
||||||
|
.p-2 {
|
||||||
|
padding: calc(var(--spacing) * 2);
|
||||||
|
}
|
||||||
.p-4 {
|
.p-4 {
|
||||||
padding: calc(var(--spacing) * 4);
|
padding: calc(var(--spacing) * 4);
|
||||||
}
|
}
|
||||||
|
@ -621,10 +645,62 @@
|
||||||
.underline {
|
.underline {
|
||||||
text-decoration-line: underline;
|
text-decoration-line: underline;
|
||||||
}
|
}
|
||||||
|
.antialiased {
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
-moz-osx-font-smoothing: grayscale;
|
||||||
|
}
|
||||||
.outline {
|
.outline {
|
||||||
outline-style: var(--tw-outline-style);
|
outline-style: var(--tw-outline-style);
|
||||||
outline-width: 1px;
|
outline-width: 1px;
|
||||||
}
|
}
|
||||||
|
.blur {
|
||||||
|
--tw-blur: blur(8px);
|
||||||
|
filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
|
||||||
|
}
|
||||||
|
.grayscale {
|
||||||
|
--tw-grayscale: grayscale(100%);
|
||||||
|
filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
|
||||||
|
}
|
||||||
|
.filter {
|
||||||
|
filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
|
||||||
|
}
|
||||||
|
.backdrop-filter {
|
||||||
|
-webkit-backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
|
||||||
|
backdrop-filter: var(--tw-backdrop-blur,) var(--tw-backdrop-brightness,) var(--tw-backdrop-contrast,) var(--tw-backdrop-grayscale,) var(--tw-backdrop-hue-rotate,) var(--tw-backdrop-invert,) var(--tw-backdrop-opacity,) var(--tw-backdrop-saturate,) var(--tw-backdrop-sepia,);
|
||||||
|
}
|
||||||
|
.transition {
|
||||||
|
transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter;
|
||||||
|
transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
|
||||||
|
transition-duration: var(--tw-duration, var(--default-transition-duration));
|
||||||
|
}
|
||||||
|
.ease-in {
|
||||||
|
--tw-ease: var(--ease-in);
|
||||||
|
transition-timing-function: var(--ease-in);
|
||||||
|
}
|
||||||
|
.ease-out {
|
||||||
|
--tw-ease: var(--ease-out);
|
||||||
|
transition-timing-function: var(--ease-out);
|
||||||
|
}
|
||||||
|
.sm\:h-1\/2 {
|
||||||
|
@media (width >= 40rem) {
|
||||||
|
height: calc(1/2 * 100%);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.sm\:w-1\/2 {
|
||||||
|
@media (width >= 40rem) {
|
||||||
|
width: calc(1/2 * 100%);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.lg\:h-1\/3 {
|
||||||
|
@media (width >= 64rem) {
|
||||||
|
height: calc(1/3 * 100%);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.lg\:w-1\/3 {
|
||||||
|
@media (width >= 64rem) {
|
||||||
|
width: calc(1/3 * 100%);
|
||||||
|
}
|
||||||
|
}
|
||||||
.xl\:text-3xl {
|
.xl\:text-3xl {
|
||||||
@media (width >= 80rem) {
|
@media (width >= 80rem) {
|
||||||
font-size: var(--text-3xl);
|
font-size: var(--text-3xl);
|
||||||
|
@ -709,3 +785,83 @@
|
||||||
inherits: false;
|
inherits: false;
|
||||||
initial-value: solid;
|
initial-value: solid;
|
||||||
}
|
}
|
||||||
|
@property --tw-blur {
|
||||||
|
syntax: "*";
|
||||||
|
inherits: false;
|
||||||
|
}
|
||||||
|
@property --tw-brightness {
|
||||||
|
syntax: "*";
|
||||||
|
inherits: false;
|
||||||
|
}
|
||||||
|
@property --tw-contrast {
|
||||||
|
syntax: "*";
|
||||||
|
inherits: false;
|
||||||
|
}
|
||||||
|
@property --tw-grayscale {
|
||||||
|
syntax: "*";
|
||||||
|
inherits: false;
|
||||||
|
}
|
||||||
|
@property --tw-hue-rotate {
|
||||||
|
syntax: "*";
|
||||||
|
inherits: false;
|
||||||
|
}
|
||||||
|
@property --tw-invert {
|
||||||
|
syntax: "*";
|
||||||
|
inherits: false;
|
||||||
|
}
|
||||||
|
@property --tw-opacity {
|
||||||
|
syntax: "*";
|
||||||
|
inherits: false;
|
||||||
|
}
|
||||||
|
@property --tw-saturate {
|
||||||
|
syntax: "*";
|
||||||
|
inherits: false;
|
||||||
|
}
|
||||||
|
@property --tw-sepia {
|
||||||
|
syntax: "*";
|
||||||
|
inherits: false;
|
||||||
|
}
|
||||||
|
@property --tw-drop-shadow {
|
||||||
|
syntax: "*";
|
||||||
|
inherits: false;
|
||||||
|
}
|
||||||
|
@property --tw-backdrop-blur {
|
||||||
|
syntax: "*";
|
||||||
|
inherits: false;
|
||||||
|
}
|
||||||
|
@property --tw-backdrop-brightness {
|
||||||
|
syntax: "*";
|
||||||
|
inherits: false;
|
||||||
|
}
|
||||||
|
@property --tw-backdrop-contrast {
|
||||||
|
syntax: "*";
|
||||||
|
inherits: false;
|
||||||
|
}
|
||||||
|
@property --tw-backdrop-grayscale {
|
||||||
|
syntax: "*";
|
||||||
|
inherits: false;
|
||||||
|
}
|
||||||
|
@property --tw-backdrop-hue-rotate {
|
||||||
|
syntax: "*";
|
||||||
|
inherits: false;
|
||||||
|
}
|
||||||
|
@property --tw-backdrop-invert {
|
||||||
|
syntax: "*";
|
||||||
|
inherits: false;
|
||||||
|
}
|
||||||
|
@property --tw-backdrop-opacity {
|
||||||
|
syntax: "*";
|
||||||
|
inherits: false;
|
||||||
|
}
|
||||||
|
@property --tw-backdrop-saturate {
|
||||||
|
syntax: "*";
|
||||||
|
inherits: false;
|
||||||
|
}
|
||||||
|
@property --tw-backdrop-sepia {
|
||||||
|
syntax: "*";
|
||||||
|
inherits: false;
|
||||||
|
}
|
||||||
|
@property --tw-ease {
|
||||||
|
syntax: "*";
|
||||||
|
inherits: false;
|
||||||
|
}
|
||||||
|
|
17
generate/static/js/initGalleries.js
Normal file
17
generate/static/js/initGalleries.js
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
const galleries = document.querySelectorAll('[data-type="gallery"]');
|
||||||
|
|
||||||
|
galleries.forEach((item, idx) => {
|
||||||
|
lightGallery(item, {
|
||||||
|
// plugins: [lgThumbnail, lgHash, lgShare, lgFullscreen, lgZoom],
|
||||||
|
plugins: [lgThumbnail, lgHash, lgZoom],
|
||||||
|
// speed: 500,
|
||||||
|
// thumbnail: true,
|
||||||
|
// animateThumb: true,
|
||||||
|
// zoomFromOrigin: true,
|
||||||
|
// allowMediaOverlap: false,
|
||||||
|
// mode: 'lg-zoom-in-out',
|
||||||
|
// galleryId: Number(item.getAttribute('data-year')),
|
||||||
|
hash: true,
|
||||||
|
customSlideName: true,
|
||||||
|
});
|
||||||
|
});
|
219
generate/static/lightgallery/README.md
Normal file
219
generate/static/lightgallery/README.md
Normal file
|
@ -0,0 +1,219 @@
|
||||||
|

|
||||||
|

|
||||||
|

|
||||||
|

|
||||||
|

|
||||||
|

|
||||||
|

|
||||||
|
|
||||||
|
# lightGallery
|
||||||
|
|
||||||
|
A customizable, modular, responsive, lightbox gallery plugin. No dependencies.\\
|
||||||
|
Available for React.js, Angular, Vue.js, and typescript.
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
## Core features
|
||||||
|
|
||||||
|
- Fully responsive.
|
||||||
|
- Modular architecture with built in plugins.
|
||||||
|
- Highly optimized for touch devices.
|
||||||
|
- Mouse drag supports for desktops.
|
||||||
|
- Double-click/Double-tap to see actual size of the image.
|
||||||
|
- Animated thumbnails.
|
||||||
|
- Social sharing.
|
||||||
|
- YouTube Vimeo Wistia and html5 videos Support.
|
||||||
|
- 20+ Hardware-Accelerated CSS3 transitions.
|
||||||
|
- Dynamic mode.
|
||||||
|
- Inline gallery.
|
||||||
|
- Full screen support.
|
||||||
|
- Zoom in/out, Pinch to zoom.
|
||||||
|
- Swipe/Drag up/down support to close gallery.
|
||||||
|
- Browser history API(deep linking).
|
||||||
|
- Responsive images.
|
||||||
|
- HTML iframe support.
|
||||||
|
- Multiple instances on one page.
|
||||||
|
- Easily customizable via CSS (SCSS) and Settings.
|
||||||
|
- Smart image preloading and code optimization.
|
||||||
|
- Keyboard Navigation for desktop.
|
||||||
|
- SVG icons.
|
||||||
|
- Accessibility support.
|
||||||
|
- Rotate, flip images.
|
||||||
|
- And many more.
|
||||||
|
|
||||||
|
## Documentation
|
||||||
|
|
||||||
|
- [Getting started](https://www.lightgalleryjs.com/docs/getting-started/)
|
||||||
|
- [Settings](https://www.lightgalleryjs.com/docs/settings/)
|
||||||
|
- [React](https://www.lightgalleryjs.com/docs/react/)
|
||||||
|
- [Vue.js](https://www.lightgalleryjs.com/docs/vue/)
|
||||||
|
- [Angular](https://www.lightgalleryjs.com/docs/angular/)
|
||||||
|
- [Demos](https://www.lightgalleryjs.com/demos/thumbnails/)
|
||||||
|
- [CodePen](https://codepen.io/collection/BNNjpR)
|
||||||
|
|
||||||
|
## Installation
|
||||||
|
|
||||||
|
lightGallery is available on NPM, Yarn, Bower, CDNs, and GitHub. You can use any
|
||||||
|
of the following method to download lightGallery.
|
||||||
|
|
||||||
|
- [NPM](https://www.npmjs.com/) - NPM is a package manager for the JavaScript
|
||||||
|
programming language. You can install `lightgallery` using the following
|
||||||
|
command
|
||||||
|
|
||||||
|
```sh
|
||||||
|
npm install lightgallery
|
||||||
|
```
|
||||||
|
|
||||||
|
- [YARN](https://yarnpkg.com/) - Yarn is another popular package manager for
|
||||||
|
the JavaScript programming language. If you prefer you can use Yarn instead
|
||||||
|
of NPM
|
||||||
|
|
||||||
|
```sh
|
||||||
|
yarn add lightgallery
|
||||||
|
```
|
||||||
|
|
||||||
|
- [Bower](http://bower.io) - You can find lightGallery on Bower package
|
||||||
|
manager as well
|
||||||
|
|
||||||
|
```sh
|
||||||
|
bower install lightgallery --save
|
||||||
|
```
|
||||||
|
|
||||||
|
- [GitHub](https://github.com/sachinchoolur/lightGallery/archive/master.zip) -
|
||||||
|
You can also directly download lightgallery from GitHub
|
||||||
|
|
||||||
|
- CDN - If you prefer to use a CDN, you can load files via
|
||||||
|
[jsdelivr](https://www.jsdelivr.com/projects/lightgallery),
|
||||||
|
[cdnjs](https://cdnjs.com/libraries/lightgallery) or
|
||||||
|
[unpkg](https://unpkg.com/browse/lightgallery@latest/)
|
||||||
|
|
||||||
|
#### Include CSS and Javascript files
|
||||||
|
|
||||||
|
First of all, include lightgallery.css in the <head> of the document. If
|
||||||
|
you want include any lightGallery plugin such as thumbnails or zoom, you need to
|
||||||
|
include respective css files as well.
|
||||||
|
|
||||||
|
Alternatively you can include `lightgallery-bundle.css` which contains
|
||||||
|
lightGallery and all plugin styles instead of separate stylesheets.
|
||||||
|
|
||||||
|
If you like you can also import scss files instead of css files from the `scss`
|
||||||
|
folder.
|
||||||
|
|
||||||
|
```HTML
|
||||||
|
<head>
|
||||||
|
<link type="text/css" rel="stylesheet" href="css/lightgallery.css" />
|
||||||
|
|
||||||
|
<!-- lightgallery plugins -->
|
||||||
|
<link type="text/css" rel="stylesheet" href="css/lg-zoom.css" />
|
||||||
|
<link type="text/css" rel="stylesheet" href="css/lg-thumbnail.css" />
|
||||||
|
|
||||||
|
|
||||||
|
<!-- OR -->
|
||||||
|
|
||||||
|
<link type="text/css" rel="stylesheet" href="css/lightgallery-bundle.css" />
|
||||||
|
</head>
|
||||||
|
```
|
||||||
|
|
||||||
|
Then include lightgallery.umd.js into your document. If you want to include any
|
||||||
|
lightgallery plugin you can include it after lightgallery.umd.js.
|
||||||
|
|
||||||
|
```HTML
|
||||||
|
<body>
|
||||||
|
....
|
||||||
|
|
||||||
|
<script src="js/lightgallery.umd.js"></script>
|
||||||
|
|
||||||
|
<!-- lightgallery plugins -->
|
||||||
|
<script src="js/plugins/lg-thumbnail.umd.js"></script>
|
||||||
|
<script src="js/plugins/lg-zoom.umd.js"></script>
|
||||||
|
</body>
|
||||||
|
```
|
||||||
|
|
||||||
|
lightGallery supports AMD, CommonJS and ES6 modules too.
|
||||||
|
|
||||||
|
```JavaScript
|
||||||
|
import lightGallery from 'lightgallery';
|
||||||
|
|
||||||
|
// Plugins
|
||||||
|
import lgThumbnail from 'lightgallery/plugins/thumbnail'
|
||||||
|
import lgZoom from 'lightgallery/plugins/zoom'
|
||||||
|
|
||||||
|
```
|
||||||
|
|
||||||
|
#### The markup
|
||||||
|
|
||||||
|
lightgallery does not force you to use any kind of markup. you can use whatever
|
||||||
|
markup you want.
|
||||||
|
<a href="https://www.lightgalleryjs.com/demos/html-markup/">Here</a> can find
|
||||||
|
detailed examples of different kinds of markups.
|
||||||
|
|
||||||
|
If you know the original size of the media, you can pass it via
|
||||||
|
`data-lg-size="${width}-${height}"` attribute for the initial
|
||||||
|
[zoom](https://www.lightgalleryjs.com/docs/settings/#zoomFromOrigin) animation.
|
||||||
|
But, this is completely optional.
|
||||||
|
|
||||||
|
```HTML
|
||||||
|
<div id="lightgallery">
|
||||||
|
<a href="img/img1.jpg" data-lg-size="1600-2400">
|
||||||
|
<img alt=".." src="img/thumb1.jpg" />
|
||||||
|
</a>
|
||||||
|
<a href="img/img2.jpg" data-lg-size="1024-800">
|
||||||
|
<img alt=".." src="img/thumb2.jpg" />
|
||||||
|
</a>
|
||||||
|
...
|
||||||
|
</div>
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Initialize lightGallery
|
||||||
|
|
||||||
|
Finally, you need to initiate the gallery by adding the following code.
|
||||||
|
|
||||||
|
```javascript
|
||||||
|
<script type="text/javascript">
|
||||||
|
lightGallery(document.getElementById('lightgallery'), {
|
||||||
|
plugins: [lgZoom, lgThumbnail],
|
||||||
|
speed: 500,
|
||||||
|
licenseKey: 'your_license_key'
|
||||||
|
... other settings
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
```
|
||||||
|
|
||||||
|
[CodePen Demos](https://codepen.io/collection/BNNjpR)
|
||||||
|
|
||||||
|
#### License Key
|
||||||
|
|
||||||
|
You'll receive a license key via email one you purchase a license [More info](https://www.lightgalleryjs.com/docs/settings/#licenseKey)
|
||||||
|
|
||||||
|
#### Plugins
|
||||||
|
|
||||||
|
As shown above, you need to pass the plugins via settings if you want to use any
|
||||||
|
lightGallery plugins.
|
||||||
|
|
||||||
|
If you are including lightGallery files via script tag, please use the same
|
||||||
|
plugins names as follows.
|
||||||
|
|
||||||
|
`lgZoom`, `lgAutoplay`, ` lgComment`, `lgFullscreen `, `lgHash`, `lgPager`,
|
||||||
|
`lgRotate`, `lgShare`, `lgThumbnail`, `lgVideo`, `lgMediumZoom`
|
||||||
|
|
||||||
|
## Browser support
|
||||||
|
|
||||||
|
lightGallery supports all major browsers including IE 10 and above.
|
||||||
|
|
||||||
|
## License
|
||||||
|
|
||||||
|
#### Commercial license
|
||||||
|
|
||||||
|
If you want to use lightGallery to develop commercial sites, themes, projects,
|
||||||
|
and applications, the Commercial license is the appropriate license. With this
|
||||||
|
option, your source code is kept proprietary.
|
||||||
|
[Read more about the commercial license](https://www.lightgalleryjs.com/license/)
|
||||||
|
|
||||||
|
#### Open source license
|
||||||
|
|
||||||
|
If you are creating an open source application under a license compatible with
|
||||||
|
the GNU GPL license v3, you may use this project under the terms of the GPLv3.
|
||||||
|
|
||||||
|
## Support
|
||||||
|
|
||||||
|
If you have any questions, suggestions, feedback, please reach out to [contact@lightgalleryjs.com](mailto:contact@lightgalleryjs.com) or DM me on [twitter](https://twitter.com/SachinNeravath)
|
93
generate/static/lightgallery/lg-thumbnail.css
Normal file
93
generate/static/lightgallery/lg-thumbnail.css
Normal file
|
@ -0,0 +1,93 @@
|
||||||
|
.lg-outer .lg-thumb-outer {
|
||||||
|
background-color: #0d0a0a;
|
||||||
|
width: 100%;
|
||||||
|
max-height: 350px;
|
||||||
|
overflow: hidden;
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
.lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
|
||||||
|
cursor: -webkit-grab;
|
||||||
|
cursor: -moz-grab;
|
||||||
|
cursor: -o-grab;
|
||||||
|
cursor: -ms-grab;
|
||||||
|
cursor: grab;
|
||||||
|
}
|
||||||
|
.lg-outer .lg-thumb-outer.lg-grabbing .lg-thumb-item {
|
||||||
|
cursor: move;
|
||||||
|
cursor: -webkit-grabbing;
|
||||||
|
cursor: -moz-grabbing;
|
||||||
|
cursor: -o-grabbing;
|
||||||
|
cursor: -ms-grabbing;
|
||||||
|
cursor: grabbing;
|
||||||
|
}
|
||||||
|
.lg-outer .lg-thumb-outer.lg-dragging .lg-thumb {
|
||||||
|
-webkit-transition-duration: 0s !important;
|
||||||
|
transition-duration: 0s !important;
|
||||||
|
}
|
||||||
|
.lg-outer .lg-thumb-outer.lg-rebuilding-thumbnails .lg-thumb {
|
||||||
|
-webkit-transition-duration: 0s !important;
|
||||||
|
transition-duration: 0s !important;
|
||||||
|
}
|
||||||
|
.lg-outer .lg-thumb-outer.lg-thumb-align-middle {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
.lg-outer .lg-thumb-outer.lg-thumb-align-left {
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
.lg-outer .lg-thumb-outer.lg-thumb-align-right {
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
.lg-outer.lg-single-item .lg-thumb-outer {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.lg-outer .lg-thumb {
|
||||||
|
padding: 5px 0;
|
||||||
|
height: 100%;
|
||||||
|
margin-bottom: -5px;
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
@media (min-width: 768px) {
|
||||||
|
.lg-outer .lg-thumb {
|
||||||
|
padding: 10px 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.lg-outer .lg-thumb-item {
|
||||||
|
cursor: pointer;
|
||||||
|
float: left;
|
||||||
|
overflow: hidden;
|
||||||
|
height: 100%;
|
||||||
|
border-radius: 2px;
|
||||||
|
margin-bottom: 5px;
|
||||||
|
will-change: border-color;
|
||||||
|
}
|
||||||
|
@media (min-width: 768px) {
|
||||||
|
.lg-outer .lg-thumb-item {
|
||||||
|
border-radius: 4px;
|
||||||
|
border: 2px solid #fff;
|
||||||
|
-webkit-transition: border-color 0.25s ease;
|
||||||
|
-o-transition: border-color 0.25s ease;
|
||||||
|
transition: border-color 0.25s ease;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
|
||||||
|
border-color: rgb(169, 7, 7);
|
||||||
|
}
|
||||||
|
.lg-outer .lg-thumb-item img {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
object-fit: cover;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
.lg-outer.lg-can-toggle .lg-item {
|
||||||
|
padding-bottom: 0;
|
||||||
|
}
|
||||||
|
.lg-outer .lg-toggle-thumb:after {
|
||||||
|
content: "\e1ff";
|
||||||
|
}
|
||||||
|
.lg-outer.lg-animate-thumb .lg-thumb {
|
||||||
|
-webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
|
||||||
|
transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*# sourceMappingURL=lg-thumbnail.css.map */
|
8
generate/static/lightgallery/lg-thumbnail.min.js
vendored
Normal file
8
generate/static/lightgallery/lg-thumbnail.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
668
generate/static/lightgallery/lightgallery.css
Normal file
668
generate/static/lightgallery/lightgallery.css
Normal file
|
@ -0,0 +1,668 @@
|
||||||
|
@font-face {
|
||||||
|
font-family: "lg";
|
||||||
|
src: url("../fonts/lg.woff2?io9a6k") format("woff2"), url("../fonts/lg.ttf?io9a6k") format("truetype"), url("../fonts/lg.woff?io9a6k") format("woff"), url("../fonts/lg.svg?io9a6k#lg") format("svg");
|
||||||
|
font-weight: normal;
|
||||||
|
font-style: normal;
|
||||||
|
font-display: block;
|
||||||
|
}
|
||||||
|
.lg-icon {
|
||||||
|
/* use !important to prevent issues with browser extensions that change fonts */
|
||||||
|
font-family: "lg" !important;
|
||||||
|
speak: never;
|
||||||
|
font-style: normal;
|
||||||
|
font-weight: normal;
|
||||||
|
font-variant: normal;
|
||||||
|
text-transform: none;
|
||||||
|
line-height: 1;
|
||||||
|
/* Better Font Rendering =========== */
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
-moz-osx-font-smoothing: grayscale;
|
||||||
|
}
|
||||||
|
|
||||||
|
.lg-container {
|
||||||
|
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
||||||
|
}
|
||||||
|
|
||||||
|
.lg-next,
|
||||||
|
.lg-prev {
|
||||||
|
background-color: rgba(0, 0, 0, 0.45);
|
||||||
|
border-radius: 2px;
|
||||||
|
color: #999;
|
||||||
|
cursor: pointer;
|
||||||
|
display: block;
|
||||||
|
font-size: 22px;
|
||||||
|
margin-top: -10px;
|
||||||
|
padding: 8px 10px 9px;
|
||||||
|
position: absolute;
|
||||||
|
top: 50%;
|
||||||
|
z-index: 1084;
|
||||||
|
outline: none;
|
||||||
|
border: none;
|
||||||
|
}
|
||||||
|
.lg-next.disabled,
|
||||||
|
.lg-prev.disabled {
|
||||||
|
opacity: 0 !important;
|
||||||
|
cursor: default;
|
||||||
|
}
|
||||||
|
.lg-next:hover:not(.disabled),
|
||||||
|
.lg-prev:hover:not(.disabled) {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.lg-single-item .lg-next,
|
||||||
|
.lg-single-item .lg-prev {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.lg-next {
|
||||||
|
right: 20px;
|
||||||
|
}
|
||||||
|
.lg-next:before {
|
||||||
|
content: "\e095";
|
||||||
|
}
|
||||||
|
|
||||||
|
.lg-prev {
|
||||||
|
left: 20px;
|
||||||
|
}
|
||||||
|
.lg-prev:after {
|
||||||
|
content: "\e094";
|
||||||
|
}
|
||||||
|
|
||||||
|
@-webkit-keyframes lg-right-end {
|
||||||
|
0% {
|
||||||
|
left: 0;
|
||||||
|
}
|
||||||
|
50% {
|
||||||
|
left: -30px;
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@-moz-keyframes lg-right-end {
|
||||||
|
0% {
|
||||||
|
left: 0;
|
||||||
|
}
|
||||||
|
50% {
|
||||||
|
left: -30px;
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@-ms-keyframes lg-right-end {
|
||||||
|
0% {
|
||||||
|
left: 0;
|
||||||
|
}
|
||||||
|
50% {
|
||||||
|
left: -30px;
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@keyframes lg-right-end {
|
||||||
|
0% {
|
||||||
|
left: 0;
|
||||||
|
}
|
||||||
|
50% {
|
||||||
|
left: -30px;
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@-webkit-keyframes lg-left-end {
|
||||||
|
0% {
|
||||||
|
left: 0;
|
||||||
|
}
|
||||||
|
50% {
|
||||||
|
left: 30px;
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@-moz-keyframes lg-left-end {
|
||||||
|
0% {
|
||||||
|
left: 0;
|
||||||
|
}
|
||||||
|
50% {
|
||||||
|
left: 30px;
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@-ms-keyframes lg-left-end {
|
||||||
|
0% {
|
||||||
|
left: 0;
|
||||||
|
}
|
||||||
|
50% {
|
||||||
|
left: 30px;
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@keyframes lg-left-end {
|
||||||
|
0% {
|
||||||
|
left: 0;
|
||||||
|
}
|
||||||
|
50% {
|
||||||
|
left: 30px;
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.lg-outer.lg-right-end .lg-object {
|
||||||
|
-webkit-animation: lg-right-end 0.3s;
|
||||||
|
-o-animation: lg-right-end 0.3s;
|
||||||
|
animation: lg-right-end 0.3s;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
.lg-outer.lg-left-end .lg-object {
|
||||||
|
-webkit-animation: lg-left-end 0.3s;
|
||||||
|
-o-animation: lg-left-end 0.3s;
|
||||||
|
animation: lg-left-end 0.3s;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.lg-toolbar {
|
||||||
|
z-index: 1082;
|
||||||
|
left: 0;
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
.lg-media-overlap .lg-toolbar {
|
||||||
|
background-image: linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
|
||||||
|
}
|
||||||
|
.lg-toolbar .lg-icon {
|
||||||
|
color: #999;
|
||||||
|
cursor: pointer;
|
||||||
|
float: right;
|
||||||
|
font-size: 24px;
|
||||||
|
height: 47px;
|
||||||
|
line-height: 27px;
|
||||||
|
padding: 10px 0;
|
||||||
|
text-align: center;
|
||||||
|
width: 50px;
|
||||||
|
text-decoration: none !important;
|
||||||
|
outline: medium none;
|
||||||
|
will-change: color;
|
||||||
|
-webkit-transition: color 0.2s linear;
|
||||||
|
-o-transition: color 0.2s linear;
|
||||||
|
transition: color 0.2s linear;
|
||||||
|
background: none;
|
||||||
|
border: none;
|
||||||
|
box-shadow: none;
|
||||||
|
}
|
||||||
|
.lg-toolbar .lg-icon.lg-icon-18 {
|
||||||
|
font-size: 18px;
|
||||||
|
}
|
||||||
|
.lg-toolbar .lg-icon:hover {
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.lg-toolbar .lg-close:after {
|
||||||
|
content: "\e070";
|
||||||
|
}
|
||||||
|
.lg-toolbar .lg-maximize {
|
||||||
|
font-size: 22px;
|
||||||
|
}
|
||||||
|
.lg-toolbar .lg-maximize:after {
|
||||||
|
content: "\e90a";
|
||||||
|
}
|
||||||
|
.lg-toolbar .lg-download:after {
|
||||||
|
content: "\e0f2";
|
||||||
|
}
|
||||||
|
|
||||||
|
.lg-sub-html {
|
||||||
|
color: #eee;
|
||||||
|
font-size: 16px;
|
||||||
|
padding: 10px 40px;
|
||||||
|
text-align: center;
|
||||||
|
z-index: 1080;
|
||||||
|
opacity: 0;
|
||||||
|
-webkit-transition: opacity 0.2s ease-out 0s;
|
||||||
|
-o-transition: opacity 0.2s ease-out 0s;
|
||||||
|
transition: opacity 0.2s ease-out 0s;
|
||||||
|
}
|
||||||
|
.lg-sub-html h4 {
|
||||||
|
margin: 0;
|
||||||
|
font-size: 13px;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
.lg-sub-html p {
|
||||||
|
font-size: 12px;
|
||||||
|
margin: 5px 0 0;
|
||||||
|
}
|
||||||
|
.lg-sub-html a {
|
||||||
|
color: inherit;
|
||||||
|
}
|
||||||
|
.lg-sub-html a:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
.lg-media-overlap .lg-sub-html {
|
||||||
|
background-image: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
|
||||||
|
}
|
||||||
|
.lg-item .lg-sub-html {
|
||||||
|
position: absolute;
|
||||||
|
bottom: 0;
|
||||||
|
right: 0;
|
||||||
|
left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.lg-error-msg {
|
||||||
|
font-size: 14px;
|
||||||
|
color: #999;
|
||||||
|
}
|
||||||
|
|
||||||
|
.lg-counter {
|
||||||
|
color: #999;
|
||||||
|
display: inline-block;
|
||||||
|
font-size: 16px;
|
||||||
|
padding-left: 20px;
|
||||||
|
padding-top: 12px;
|
||||||
|
height: 47px;
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
|
||||||
|
.lg-closing .lg-toolbar,
|
||||||
|
.lg-closing .lg-prev,
|
||||||
|
.lg-closing .lg-next,
|
||||||
|
.lg-closing .lg-sub-html {
|
||||||
|
opacity: 0;
|
||||||
|
-webkit-transition: -webkit-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
|
||||||
|
-moz-transition: -moz-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
|
||||||
|
-o-transition: -o-transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
|
||||||
|
transition: transform 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.08 cubic-bezier(0, 0, 0.25, 1) 0s, color 0.08 linear;
|
||||||
|
}
|
||||||
|
|
||||||
|
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-img-wrap,
|
||||||
|
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-video-cont,
|
||||||
|
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-media-cont {
|
||||||
|
opacity: 0;
|
||||||
|
-moz-transform: scale3d(0.5, 0.5, 0.5);
|
||||||
|
-o-transform: scale3d(0.5, 0.5, 0.5);
|
||||||
|
-ms-transform: scale3d(0.5, 0.5, 0.5);
|
||||||
|
-webkit-transform: scale3d(0.5, 0.5, 0.5);
|
||||||
|
transform: scale3d(0.5, 0.5, 0.5);
|
||||||
|
will-change: transform, opacity;
|
||||||
|
-webkit-transition: -webkit-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
|
||||||
|
-moz-transition: -moz-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
|
||||||
|
-o-transition: -o-transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
|
||||||
|
transition: transform 250ms cubic-bezier(0, 0, 0.25, 1) 0s, opacity 250ms cubic-bezier(0, 0, 0.25, 1) !important;
|
||||||
|
}
|
||||||
|
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-img-wrap,
|
||||||
|
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-video-cont,
|
||||||
|
body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-media-cont {
|
||||||
|
opacity: 1;
|
||||||
|
-moz-transform: scale3d(1, 1, 1);
|
||||||
|
-o-transform: scale3d(1, 1, 1);
|
||||||
|
-ms-transform: scale3d(1, 1, 1);
|
||||||
|
-webkit-transform: scale3d(1, 1, 1);
|
||||||
|
transform: scale3d(1, 1, 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
.lg-icon:focus-visible {
|
||||||
|
color: #fff;
|
||||||
|
border-radius: 3px;
|
||||||
|
outline: 1px dashed rgba(255, 255, 255, 0.6);
|
||||||
|
}
|
||||||
|
|
||||||
|
.lg-toolbar .lg-icon:focus-visible {
|
||||||
|
border-radius: 8px;
|
||||||
|
outline-offset: -5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.lg-group:after {
|
||||||
|
content: "";
|
||||||
|
display: table;
|
||||||
|
clear: both;
|
||||||
|
}
|
||||||
|
|
||||||
|
.lg-container {
|
||||||
|
display: none;
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
.lg-container.lg-show {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.lg-on {
|
||||||
|
scroll-behavior: unset;
|
||||||
|
}
|
||||||
|
|
||||||
|
.lg-overlay-open {
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.lg-toolbar,
|
||||||
|
.lg-prev,
|
||||||
|
.lg-next,
|
||||||
|
.lg-pager-outer,
|
||||||
|
.lg-hide-sub-html .lg-sub-html {
|
||||||
|
opacity: 0;
|
||||||
|
will-change: transform, opacity;
|
||||||
|
-webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
|
||||||
|
-moz-transition: -moz-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
|
||||||
|
-o-transition: -o-transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
|
||||||
|
transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.25s cubic-bezier(0, 0, 0.25, 1) 0s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.lg-show-in .lg-toolbar,
|
||||||
|
.lg-show-in .lg-prev,
|
||||||
|
.lg-show-in .lg-next,
|
||||||
|
.lg-show-in .lg-pager-outer {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
.lg-show-in.lg-hide-sub-html .lg-sub-html {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
.lg-show-in .lg-hide-items .lg-prev {
|
||||||
|
opacity: 0;
|
||||||
|
-webkit-transform: translate3d(-10px, 0, 0);
|
||||||
|
transform: translate3d(-10px, 0, 0);
|
||||||
|
}
|
||||||
|
.lg-show-in .lg-hide-items .lg-next {
|
||||||
|
opacity: 0;
|
||||||
|
-webkit-transform: translate3d(10px, 0, 0);
|
||||||
|
transform: translate3d(10px, 0, 0);
|
||||||
|
}
|
||||||
|
.lg-show-in .lg-hide-items .lg-toolbar {
|
||||||
|
opacity: 0;
|
||||||
|
-webkit-transform: translate3d(0, -10px, 0);
|
||||||
|
transform: translate3d(0, -10px, 0);
|
||||||
|
}
|
||||||
|
.lg-show-in .lg-hide-items.lg-hide-sub-html .lg-sub-html {
|
||||||
|
opacity: 0;
|
||||||
|
-webkit-transform: translate3d(0, 20px, 0);
|
||||||
|
transform: translate3d(0, 20px, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
.lg-outer {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
z-index: 1050;
|
||||||
|
text-align: left;
|
||||||
|
opacity: 0.001;
|
||||||
|
outline: none;
|
||||||
|
will-change: auto;
|
||||||
|
overflow: hidden;
|
||||||
|
-webkit-transition: opacity 0.15s ease 0s;
|
||||||
|
-o-transition: opacity 0.15s ease 0s;
|
||||||
|
transition: opacity 0.15s ease 0s;
|
||||||
|
}
|
||||||
|
.lg-outer * {
|
||||||
|
-webkit-box-sizing: border-box;
|
||||||
|
-moz-box-sizing: border-box;
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
|
.lg-outer.lg-zoom-from-image {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
.lg-outer.lg-visible {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
.lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-prev-slide, .lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-next-slide, .lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-current {
|
||||||
|
-webkit-transition-duration: inherit !important;
|
||||||
|
transition-duration: inherit !important;
|
||||||
|
-webkit-transition-timing-function: inherit !important;
|
||||||
|
transition-timing-function: inherit !important;
|
||||||
|
}
|
||||||
|
.lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide, .lg-outer.lg-css3.lg-dragging .lg-item.lg-current {
|
||||||
|
-webkit-transition-duration: 0s !important;
|
||||||
|
transition-duration: 0s !important;
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
.lg-outer.lg-grab img.lg-object {
|
||||||
|
cursor: -webkit-grab;
|
||||||
|
cursor: -moz-grab;
|
||||||
|
cursor: -o-grab;
|
||||||
|
cursor: -ms-grab;
|
||||||
|
cursor: grab;
|
||||||
|
}
|
||||||
|
.lg-outer.lg-grabbing img.lg-object {
|
||||||
|
cursor: move;
|
||||||
|
cursor: -webkit-grabbing;
|
||||||
|
cursor: -moz-grabbing;
|
||||||
|
cursor: -o-grabbing;
|
||||||
|
cursor: -ms-grabbing;
|
||||||
|
cursor: grabbing;
|
||||||
|
}
|
||||||
|
.lg-outer .lg-content {
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
bottom: 0;
|
||||||
|
}
|
||||||
|
.lg-outer .lg-inner {
|
||||||
|
width: 100%;
|
||||||
|
position: absolute;
|
||||||
|
left: 0;
|
||||||
|
top: 0;
|
||||||
|
bottom: 0;
|
||||||
|
-webkit-transition: opacity 0s;
|
||||||
|
-o-transition: opacity 0s;
|
||||||
|
transition: opacity 0s;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
.lg-outer .lg-item {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
.lg-outer .lg-item:not(.lg-start-end-progress) {
|
||||||
|
background: url("../images/loading.gif") no-repeat scroll center center transparent;
|
||||||
|
}
|
||||||
|
.lg-outer.lg-css3 .lg-prev-slide,
|
||||||
|
.lg-outer.lg-css3 .lg-current,
|
||||||
|
.lg-outer.lg-css3 .lg-next-slide {
|
||||||
|
display: inline-block !important;
|
||||||
|
}
|
||||||
|
.lg-outer.lg-css .lg-current {
|
||||||
|
display: inline-block !important;
|
||||||
|
}
|
||||||
|
.lg-outer .lg-item,
|
||||||
|
.lg-outer .lg-img-wrap {
|
||||||
|
display: inline-block;
|
||||||
|
text-align: center;
|
||||||
|
position: absolute;
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
.lg-outer .lg-item:before,
|
||||||
|
.lg-outer .lg-img-wrap:before {
|
||||||
|
content: "";
|
||||||
|
display: inline-block;
|
||||||
|
height: 100%;
|
||||||
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
.lg-outer .lg-img-wrap {
|
||||||
|
position: absolute;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
top: 0;
|
||||||
|
bottom: 0;
|
||||||
|
white-space: nowrap;
|
||||||
|
font-size: 0;
|
||||||
|
}
|
||||||
|
.lg-outer .lg-item.lg-complete {
|
||||||
|
background-image: none;
|
||||||
|
}
|
||||||
|
.lg-outer .lg-item.lg-current {
|
||||||
|
z-index: 1060;
|
||||||
|
}
|
||||||
|
.lg-outer .lg-object {
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: middle;
|
||||||
|
max-width: 100%;
|
||||||
|
max-height: 100%;
|
||||||
|
width: auto;
|
||||||
|
height: auto;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
.lg-outer .lg-empty-html.lg-sub-html,
|
||||||
|
.lg-outer .lg-empty-html .lg-sub-html {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.lg-outer.lg-hide-download .lg-download {
|
||||||
|
opacity: 0.75;
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
.lg-outer .lg-first-slide .lg-dummy-img {
|
||||||
|
position: absolute;
|
||||||
|
top: 50%;
|
||||||
|
left: 50%;
|
||||||
|
}
|
||||||
|
.lg-outer.lg-components-open:not(.lg-zoomed) .lg-components {
|
||||||
|
-webkit-transform: translate3d(0, 0%, 0);
|
||||||
|
transform: translate3d(0, 0%, 0);
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
.lg-outer.lg-components-open:not(.lg-zoomed) .lg-sub-html {
|
||||||
|
opacity: 1;
|
||||||
|
transition: opacity 0.2s ease-out 0.15s;
|
||||||
|
}
|
||||||
|
.lg-outer .lg-media-cont {
|
||||||
|
text-align: center;
|
||||||
|
display: inline-block;
|
||||||
|
vertical-align: middle;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
.lg-outer .lg-media-cont .lg-object {
|
||||||
|
width: 100% !important;
|
||||||
|
height: 100% !important;
|
||||||
|
}
|
||||||
|
.lg-outer .lg-has-iframe .lg-media-cont {
|
||||||
|
-webkit-overflow-scrolling: touch;
|
||||||
|
overflow: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.lg-backdrop {
|
||||||
|
position: fixed;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
right: 0;
|
||||||
|
bottom: 0;
|
||||||
|
z-index: 1040;
|
||||||
|
background-color: #000;
|
||||||
|
opacity: 0;
|
||||||
|
will-change: auto;
|
||||||
|
-webkit-transition: opacity 333ms ease-in 0s;
|
||||||
|
-o-transition: opacity 333ms ease-in 0s;
|
||||||
|
transition: opacity 333ms ease-in 0s;
|
||||||
|
}
|
||||||
|
.lg-backdrop.in {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.lg-css3.lg-no-trans .lg-prev-slide,
|
||||||
|
.lg-css3.lg-no-trans .lg-next-slide,
|
||||||
|
.lg-css3.lg-no-trans .lg-current {
|
||||||
|
-webkit-transition: none 0s ease 0s !important;
|
||||||
|
-moz-transition: none 0s ease 0s !important;
|
||||||
|
-o-transition: none 0s ease 0s !important;
|
||||||
|
transition: none 0s ease 0s !important;
|
||||||
|
}
|
||||||
|
.lg-css3.lg-use-css3 .lg-item {
|
||||||
|
-webkit-backface-visibility: hidden;
|
||||||
|
-moz-backface-visibility: hidden;
|
||||||
|
backface-visibility: hidden;
|
||||||
|
}
|
||||||
|
.lg-css3.lg-fade .lg-item {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
.lg-css3.lg-fade .lg-item.lg-current {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
.lg-css3.lg-fade .lg-item.lg-prev-slide, .lg-css3.lg-fade .lg-item.lg-next-slide, .lg-css3.lg-fade .lg-item.lg-current {
|
||||||
|
-webkit-transition: opacity 0.1s ease 0s;
|
||||||
|
-moz-transition: opacity 0.1s ease 0s;
|
||||||
|
-o-transition: opacity 0.1s ease 0s;
|
||||||
|
transition: opacity 0.1s ease 0s;
|
||||||
|
}
|
||||||
|
.lg-css3.lg-use-css3 .lg-item.lg-start-progress {
|
||||||
|
-webkit-transition: -webkit-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
|
||||||
|
-moz-transition: -moz-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
|
||||||
|
-o-transition: -o-transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
|
||||||
|
transition: transform 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
|
||||||
|
}
|
||||||
|
.lg-css3.lg-use-css3 .lg-item.lg-start-end-progress {
|
||||||
|
-webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
|
||||||
|
-moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
|
||||||
|
-o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
|
||||||
|
transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s;
|
||||||
|
}
|
||||||
|
.lg-css3.lg-slide.lg-use-css3 .lg-item {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide {
|
||||||
|
-webkit-transform: translate3d(-100%, 0, 0);
|
||||||
|
transform: translate3d(-100%, 0, 0);
|
||||||
|
}
|
||||||
|
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide {
|
||||||
|
-webkit-transform: translate3d(100%, 0, 0);
|
||||||
|
transform: translate3d(100%, 0, 0);
|
||||||
|
}
|
||||||
|
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
|
||||||
|
-webkit-transform: translate3d(0, 0, 0);
|
||||||
|
transform: translate3d(0, 0, 0);
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide, .lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current {
|
||||||
|
-webkit-transition: -webkit-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
|
||||||
|
-moz-transition: -moz-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
|
||||||
|
-o-transition: -o-transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
|
||||||
|
transition: transform 1s cubic-bezier(0, 0, 0.25, 1) 0s, opacity 0.1s ease 0s;
|
||||||
|
}
|
||||||
|
|
||||||
|
.lg-container {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.lg-container.lg-show {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
.lg-container.lg-dragging-vertical .lg-backdrop {
|
||||||
|
-webkit-transition-duration: 0s !important;
|
||||||
|
transition-duration: 0s !important;
|
||||||
|
}
|
||||||
|
.lg-container.lg-dragging-vertical .lg-css3 .lg-item.lg-current {
|
||||||
|
-webkit-transition-duration: 0s !important;
|
||||||
|
transition-duration: 0s !important;
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.lg-inline .lg-backdrop,
|
||||||
|
.lg-inline .lg-outer {
|
||||||
|
position: absolute;
|
||||||
|
}
|
||||||
|
.lg-inline .lg-backdrop {
|
||||||
|
z-index: 1;
|
||||||
|
}
|
||||||
|
.lg-inline .lg-outer {
|
||||||
|
z-index: 2;
|
||||||
|
}
|
||||||
|
.lg-inline .lg-maximize:after {
|
||||||
|
content: "\e909";
|
||||||
|
}
|
||||||
|
|
||||||
|
.lg-components {
|
||||||
|
-webkit-transform: translate3d(0, 100%, 0);
|
||||||
|
transform: translate3d(0, 100%, 0);
|
||||||
|
will-change: transform;
|
||||||
|
-webkit-transition: -webkit-transform 0.35s ease-out 0s;
|
||||||
|
-moz-transition: -moz-transform 0.35s ease-out 0s;
|
||||||
|
-o-transition: -o-transform 0.35s ease-out 0s;
|
||||||
|
transition: transform 0.35s ease-out 0s;
|
||||||
|
z-index: 1080;
|
||||||
|
position: absolute;
|
||||||
|
bottom: 0;
|
||||||
|
right: 0;
|
||||||
|
left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/*# sourceMappingURL=lightgallery.css.map */
|
8
generate/static/lightgallery/lightgallery.min.js
vendored
Normal file
8
generate/static/lightgallery/lightgallery.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
|
@ -23,8 +23,27 @@ export default function Base({ children, isDev }: BaseProps) {
|
||||||
href="https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap"
|
href="https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap"
|
||||||
rel="stylesheet"
|
rel="stylesheet"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
|
||||||
|
<script src="https://cdn.jsdelivr.net/npm/lightgallery@2.8.2/lightgallery.min.js"></script>
|
||||||
|
<script src="https://cdn.jsdelivr.net/npm/lightgallery@2.8.2/plugins/share/lg-share.min.js"></script>
|
||||||
|
<script src="https://cdn.jsdelivr.net/npm/lightgallery@2.8.2/plugins/thumbnail/lg-thumbnail.min.js"></script>
|
||||||
|
<script src="https://cdn.jsdelivr.net/npm/lightgallery@2.8.2/plugins/zoom/lg-zoom.min.js"></script>
|
||||||
|
<script src="https://cdn.jsdelivr.net/npm/lightgallery@2.8.2/plugins/hash/lg-hash.min.js"></script>
|
||||||
|
<script src="https://cdn.jsdelivr.net/npm/lightgallery@2.8.2/plugins/fullscreen/lg-fullscreen.min.js"></script>
|
||||||
|
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/lightgallery@2.8.2/css/lightgallery.min.css" />
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/lightgallery@2.8.2/css/lg-thumbnail.min.css" />
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/lightgallery@2.8.2/css/lg-share.min.css" />
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/lightgallery@2.8.2/css/lg-zoom.min.css" />
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/lightgallery@2.8.2/css/lg-transitions.min.css" />
|
||||||
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/lightgallery@2.8.2/css/lg-fullscreen.min.css" />
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
<body className="bg-[#121B2C] text-white">{children}</body>
|
<body className="bg-[#121B2C] text-white">
|
||||||
|
{children}
|
||||||
|
<script src="/static/js/initGalleries.js" />
|
||||||
|
</body>
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
33
generate/templates/YearPhotos.tsx
Normal file
33
generate/templates/YearPhotos.tsx
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
import { type Image } from "../build";
|
||||||
|
|
||||||
|
interface YearPhotosProps {
|
||||||
|
year: string;
|
||||||
|
images: Image[];
|
||||||
|
}
|
||||||
|
|
||||||
|
export default function YearPhotos({ year, images }: YearPhotosProps) {
|
||||||
|
return (
|
||||||
|
<div>
|
||||||
|
<h2 className="text-2xl font-bold xl:text-3xl 2xl:text-4xl inter-semibold mb-4">
|
||||||
|
{year}
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<div className="" id={`gallery-${year}`} data-type="gallery" data-year={year}>
|
||||||
|
{images.map((image) => (
|
||||||
|
<a
|
||||||
|
href={image.image}
|
||||||
|
className="lg:w-1/3 lg:h-1/3 sm:w-1/2 sm:h-1/2 p-2"
|
||||||
|
key={`${year}-${image.id}`}
|
||||||
|
data-slide-name={image.id}
|
||||||
|
>
|
||||||
|
<img
|
||||||
|
src={image.thumbnail}
|
||||||
|
className="w-full h-full object-cover rounded-lg"
|
||||||
|
alt={image.alt}
|
||||||
|
/>
|
||||||
|
</a>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
|
@ -44,7 +44,7 @@ function onExit() {
|
||||||
process.exit(0);
|
process.exit(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
const watcher = chokidar.watch(["./templates", "./build.tsx"], {
|
const watcher = chokidar.watch(["./templates", "./build.tsx", "./static"], {
|
||||||
ignored: (filePath, stats) => filePath.endsWith("watch.ts"),
|
ignored: (filePath, stats) => filePath.endsWith("watch.ts"),
|
||||||
atomic: true,
|
atomic: true,
|
||||||
awaitWriteFinish: true,
|
awaitWriteFinish: true,
|
||||||
|
|
Loading…
Add table
Reference in a new issue