add: page css

This commit is contained in:
2025-04-14 20:08:03 +02:00
parent c92fc36b40
commit d96eeb4bef
2 changed files with 66 additions and 1 deletions

View File

@ -1,5 +1,5 @@
import sys
import os
import shutil
from progress.bar import Bar
from path import Path
@ -49,6 +49,7 @@ def create_pages(pages: list[Page]) -> None:
def main():
site_path: Path = Path(argument_parsing())
pages: list[Page] = scan_pages(site_path.get_dirs())
shutil.copy2("./src/templates/page.css", site_path.get_absolute_path())
create_pages(pages)
if __name__ == "__main__":