Landing page editor: logo/background/subtitle, markdown details page, editable disclaimer, photo shutter

This commit is contained in:
2026-07-24 16:35:00 +10:00
parent dfa2ae12e8
commit a1234fb851
8 changed files with 373 additions and 31 deletions
+16
View File
@@ -0,0 +1,16 @@
@echo off
REM push-landing.bat - commit and push the landing page editor + shutter button.
cd /d K:\newbury-exhibit-v2
if not exist .git (
echo No git repo here - initialising and linking to Gitea...
git init -b main
git remote add origin https://gitea.hideawaygaming.com.au/jessikitty/newbury-exhibit-v2.git
git fetch origin
git reset --soft origin/main
)
git add -A
git commit -m "Landing page editor: logo/background/subtitle, markdown details page, editable disclaimer, photo shutter"
git push origin main
pause