diff --git a/.gitignore b/.gitignore index 1ef93c8..30ce95e 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,6 @@ data/embeddings.json data/similar-links.json data/backlinks.json data/build-stats.json + +# IGNORE.txt is for the local build and need not be synced. +IGNORE.txt \ No newline at end of file diff --git a/Makefile b/Makefile index 73dd4d4..17dc27e 100644 --- a/Makefile +++ b/Makefile @@ -14,11 +14,11 @@ build: deploy: build @if [ -z "$(GITHUB_TOKEN)" ] || [ -z "$(GITHUB_REPO)" ]; then \ - echo "Skipping push: set GITHUB_TOKEN and GITHUB_REPO in .env"; \ + echo "Skipping GitHub push: set GITHUB_TOKEN and GITHUB_REPO in .env"; \ else \ git push "https://$(GITHUB_TOKEN)@github.com/$(GITHUB_REPO).git" main; \ fi - rsync -avz --delete _site/ vps:/var/www/levineuwirth.org/ + rsync -avz --delete _site/ $(VPS_USER)@$(VPS_HOST):$(VPS_PATH)/ watch: cabal run site -- watch diff --git a/static/css/layout.css b/static/css/layout.css index 13c5a3d..30a2965 100644 --- a/static/css/layout.css +++ b/static/css/layout.css @@ -114,6 +114,7 @@ body > footer { .footer-left { display: flex; align-items: center; + flex: 1; gap: 1rem; } @@ -158,6 +159,11 @@ body > footer { color: var(--text-muted); } +.footer-right { + flex: 1; + text-align: right; +} + .footer-build { font-size: 0.72rem; color: var(--text-faint); diff --git a/templates/partials/footer.html b/templates/partials/footer.html index 9dcdb3e..e682620 100644 --- a/templates/partials/footer.html +++ b/templates/partials/footer.html @@ -4,7 +4,7 @@ levineuwirth.org