website work

This commit is contained in:
Zsolt Ero
2024-01-11 17:33:35 +01:00
parent 8d18554ec7
commit e37fc36ede
17 changed files with 345 additions and 215 deletions

View File

@@ -5,7 +5,6 @@ import marko
def generate():
licenses = open('../LICENSE.md').read().split('---')[0]
map_html = open('map.html').read()
text_md = open('text.md').read()
text_md = text_md.replace('{licenses}', licenses)
@@ -14,7 +13,6 @@ def generate():
template = open('template.html').read()
template = template.replace('{text}', text_html)
template = template.replace('{map}', map_html)
open('index.html', 'w').write(template)