mirror of
https://gitlab.com/MisterBiggs/Resume.git
synced 2025-08-02 03:21:38 +00:00
12 lines
309 B
Python
12 lines
309 B
Python
with open("header.html", "r") as top, open("footer.html", "r") as bottom, open(
|
|
"resume.html", "r"
|
|
) as middle:
|
|
header = top.read()
|
|
content = middle.read()
|
|
footer = bottom.read()
|
|
|
|
with open("index.html", "w+") as index:
|
|
index.write(header)
|
|
index.write(content)
|
|
index.write(footer)
|