3 Commits

Author SHA1 Message Date
224441f629 Hotfix - Build date version 2025-08-08 11:34:22 +00:00
b378e9a386 Hotfix - Build version 2025-08-08 11:18:13 +00:00
2749302082 Hotfix - Mobile img margin-top 2025-08-08 11:13:27 +00:00
2 changed files with 6 additions and 1 deletions

View File

@ -29,6 +29,7 @@ def build():
# Defining build vars
build_date = datetime.now().strftime("%Y%m%d%H%M%S")
build_date_version = datetime.now().strftime("%Y-%m-%d %H:%M:%S")
site_vars = load_yaml(SITE_FILE)
gallery_sections = load_yaml(GALLERY_FILE)
build_section = site_vars.get("build", {})
@ -121,7 +122,7 @@ def build():
gallery_html = render_gallery_images(gallery_images)
gallery = render_template(TEMPLATE_DIR / "gallery.html", {"gallery_images": gallery_html})
signature = f"<!-- Build with Lumeex v1.0 | https://git.djeex.fr/Djeex/lumeex | {build_date} -->"
signature = f"<!-- Build with Lumeex v1.1 | https://git.djeex.fr/Djeex/lumeex | {build_date_version} -->"
body = f"""
<body>
<div class="page-loader"><div class="spinner"></div></div>

View File

@ -486,6 +486,10 @@ h2 {
font-size:18px;
}
.section img {
margin: 0px 0 60px 0;
}
.tag {
font-size: 14px;
}