[Events] readability improvement, banner spacing

This commit is contained in:
coja
2026-05-02 03:16:51 +02:00
parent ec64147c6b
commit 69b0e5b63a
2 changed files with 18 additions and 7 deletions

View File

@@ -36,7 +36,7 @@ def main():
f.write(html)
f.close()
with open(f'pages/en/{page["name"]}.html') as f:
pageHtml = "<div><img src='/img/students_bug.jpg' alt='Students found the bug' /></div>"
pageHtml = "<div class='cover-wrap'><img src='/img/students_bug.jpg' alt='Students found the bug' /></div>"
pageHtml += f.read()
html = buildPage(page['name'], page['titleEN'], pageHtml, page['style'], templateEN)
f = open(f'site/en/{page["name"]}.html', 'w')