diff --git a/Makefile b/Makefile
index bf21ca9..37c3bd0 100644
--- a/Makefile
+++ b/Makefile
@@ -187,13 +187,14 @@ HDM_DEPLOY_PATH = /home/tengo/html/hdm
build-index: build/.exists
@echo "Building root index..."
- @echo '
HdM VorlesungenHdM Vorlesungen
Wintersemester 2025/26 · Michael Czechowski
' > build/index.html
+ @echo 'HdM VorlesungenHdM Vorlesungen
Wintersemester 2025/26 · Michael Czechowski
Referenzen

https://librete.ch/hdm/
' > build/index.html
# Deploy
define deploy_course
@echo "Deploying $(1)..."
scp build/$(1)/*.html $(DEPLOY_HOST):$($(1)_DEPLOY_PATH)/
scp build/$(1)/*.pdf $(DEPLOY_HOST):$($(1)_DEPLOY_PATH)/ 2>/dev/null || true
+ scp build/$(1)/*.svg $(DEPLOY_HOST):$($(1)_DEPLOY_PATH)/ 2>/dev/null || true
scp -r build/$(1)/assets/ $(DEPLOY_HOST):$($(1)_DEPLOY_PATH)/
scp -r build/$(1)/materials/ $(DEPLOY_HOST):$($(1)_DEPLOY_PATH)/ 2>/dev/null || true
@echo "$(1) deployed!"
@@ -208,6 +209,7 @@ deploy-c: build-c
deploy-index: build-index
@echo "Deploying root index..."
scp build/index.html $(DEPLOY_HOST):$(HDM_DEPLOY_PATH)/
+ scp build/qr-root.svg $(DEPLOY_HOST):$(HDM_DEPLOY_PATH)/ 2>/dev/null || true
@echo "Root index deployed!"
deploy: build-index deploy-b deploy-c deploy-index