zinovik / gallery

Home Page:https://zinovik.github.io/gallery

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

This application requires 3 files:

SECTIONS_URL - an array of sections:

interface SectionInterface {
  path: string;
  title: string;
  text?: string | string[];
  order?: number;
}

FILES_URL - an array of files (images and videos):

interface FileInterface {
  path: string;
  filename: string;
  url: string;
  thumbnail?: string;
  description?: string;
  text?: string | string[];
  order?: number;
  isVertical?: boolean;
}

FILE_URLS_URL - an array of file urls:

string[]

About

https://zinovik.github.io/gallery

License:Apache License 2.0


Languages

Language:TypeScript 90.4%Language:HTML 6.4%Language:CSS 3.2%