Added site to this repo and Gitlab to build it

This commit is contained in:
Leon Mika 2025-10-26 09:25:36 +11:00
parent 8dafa6fa8f
commit c474b18232
50 changed files with 1812 additions and 1 deletions

19
_site/bin/process-images.py Executable file
View file

@ -0,0 +1,19 @@
#!/usr/bin/env python3
import os.path
import subprocess
images = [
'main-item-view.png',
'table-selection.png',
'filter-items.png',
'query-items.png',
'modified-items.png',
'fields-popup.png'
]
for image in images:
src_file = os.path.join('images', image)
target_file = os.path.join('static/images/dynamo-browse', image)
subprocess.run(['magick', src_file, '-shave', '24x16', target_file])