New & improved style, removed blog

This commit is contained in:
gltron
2022-08-21 13:44:15 +02:00
parent 5df89aad65
commit 76888b1660
30 changed files with 151 additions and 482 deletions

25
templates/gallery.hbs Normal file
View File

@@ -0,0 +1,25 @@
<!DOCTYPE html>
<html lang="fr">
{{> header}}
<body>
<div class="main-container">
<div id="background" class="background"></div>
<div class="card-menu">
<a href="https://glt.sx">Home</a>
</div>
<div class="card-list">
{{#each section.posts}}
<a href="{{this.url}}" class="card">
<img src="{{this.preview}}" alt="{{this.title}}">
<span class="card-title">{{this.title}}</span>
<span class="card-subtitle">{{this.date_printable}}</span>
</a>
{{/each}}
</div>
<footer style="position:fixed">
<a class="footer" href="/">glt.sx - 2022</a>
</footer>
</div>
</body>
<script src="js/main.js" type="module"></script>
</html>