Added 'content' and 'static' dirs to the repo

This commit is contained in:
faildev_mode 2023-06-13 17:58:39 +02:00
parent 6b29cfc7a5
commit 81e7dd88ff
No known key found for this signature in database
GPG Key ID: 70845C70C0F5E205
3 changed files with 1 additions and 0 deletions

0
_src/content/.gitkeep Normal file
View File

View File

@ -72,6 +72,7 @@ def scan_dir(path: str, orig_path=None) -> list:
if not orig_path: orig_path = path
for entry in os.scandir(path):
if entry.name.startswith('.'): continue # skip hidden entries (may change in the future)
# we don't want symlinks right now (smart scanning may be added in the future)
if entry.is_symlink(): continue
if entry.is_file():

0
_src/static/.gitkeep Normal file
View File