init v0.1.0

This commit is contained in:
Caffeine Fueled 2025-10-02 19:53:03 +02:00
commit 017b6445f4
Signed by: cf7
GPG key ID: CA295D643074C68C
14 changed files with 555 additions and 0 deletions

12
templates/00_meta.tmpl Normal file
View file

@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Image gallery powered by shellery">
<meta name="generator" content="shellery">
<title>Gallery</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" href="favicon.ico">
</head>
<body>

3
templates/10_header.tmpl Normal file
View file

@ -0,0 +1,3 @@
<header>
<h1>Gallery</h1>
</header>

View file

@ -0,0 +1,3 @@
<main class="gallery">
<!-- IMAGES -->
</main>

6
templates/90_footer.tmpl Normal file
View file

@ -0,0 +1,6 @@
<!-- LIGHTBOXES -->
<footer>
<p>Powered by <a href="https://git.uphillsecurity.com/cf7/shellery" target="_blank" rel="noopener">shellery</a></p>
</footer>
</body>
</html>